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