d82602330b63e46ce91babbc475b7ae1b78364ba
[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                 "priority"=>8,
34                 "download-i386 RPM package"=>"dist/mdsms-1.5.3-0.i386.rpm",
35                 "download-sources RPM package"=>"dist/mdsms-1.5.3-0.src.rpm",
36                 "download-sources .tar.gz"=>"dist/mdsms-1.5.3.tar.gz",
37                 "download-sources .tar.Z"=>"dist/mdsms-1.5.3.tar.Z",
38                 "download-logos from KESSLER Wireless Design"=>"http://www.kessler-design.com/wireless/samples.php3",
39                 "cvs"=>"mdsms",
40                 "summary"=>"Mobile Device SMS Tool",
41                 "license"=>"GPL",
42                 "maintenance"=>"ready",
43                 "sponsorship"=>join(", ",
44                                 a_href('http://www.tencom.cz/','TENcom Trade')
45                                                 .'/'.a_href('http://www.sme.cz/default.asp?lng=en&ver=html','SME'),
46                                 a_href('http://www.readynote.com/','ReadyNote'),
47                                 a_href('http://www.atspraha.cz/','Advanced Telecom Services')),
48                 "language"=>"C",
49                 "description"=><<"HERE",
50 <p>Sends NOL or NGG files as operator logo or group graphics through
51 @{[ a_href 'http://www.nokia.com/','Nokia' ]} @{[ a_href 'http://www.communicator.org/','Communicator' ]}
52 <b>9110</b> (9000/9000i is definitively <b>not</b> compatible). Usually you need
53 to have either infra-red port in your computer or special FBUS cable to be able
54 to use conventional logo-uploading tools (@{[ a_href 'http://www.gnokii.org/','GNokii' ]}
55 or one from @{[ a_href 'http://www.kessler-design.com/wireless/operatorlogo.php3','KESSLER Wireless Design' ]}).
56 This program uses only standard modem cable and integrated
57 FaxModem capability of 9110.</p>
58 <p>This software should be general-UNIX compatible. Please wait a minute when
59 you run it, under various UNIXes it may take some time to finish.</p>
60 <p><b>GSM network codes: </b>GSM network code needs to be given as parameter during
61 sending of operator logo. Nice list of the codes you will find
62 @{[ a_href 'http://kbs.cs.tu-berlin.de/~jutta/gsm/gsm-list.html','here' ]}.</p>
63 HERE
64                 );
65
66 1;