4ba4f19d9e3dc76ad267b13873360865d776d8ff
[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 My::Project::mdsms;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 use vars qw($VERSION $CVS_ID);
24 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
25 $CVS_ID=q$Id$;
26 use strict;
27 use warnings;
28
29
30 our %ListItem=(
31                 "name"=>"Mobile Device SMS Tool",
32                 "download-sources .tar.gz"=>"mdsms-1.5.2.tar.gz",
33                 "download-sources .tar.Z"=>"mdsms-1.5.2.tar.Z",
34                 "download-i386 RPM package"=>"mdsms-1.5.2-0.i386.rpm",
35                 "download-sources RPM package"=>"mdsms-1.5.2-0.src.rpm",
36                 "download-logos from KESSLER Wireless Design"=>"http://www.kessler-design.com/wireless/samples.php3",
37                 "summary"=>"Mobile communication",
38                 "license"=>"GPL",
39                 "maintenance"=>"finished",
40                 "language"=>"C",
41                 "description"=>""
42                                 .'<p>Sends NOL or NGG files as operator logo or group graphics through'
43                                 .' <a href="http://www.nokia.com/">Nokia</a> <a href="http://www.communicator.org/">Communicator</a>'
44                                 .' <b>9110</b> (9000/9000i is definitively <b>not</b> compatible). Usually you need'
45                                 .' to have either infra-red port in your computer or special FBUS cable to be able'
46                                 .' to use conventional logo-uploading tools (<a href="http://www.gnokii.org/">GNokii</a>'
47                                 .' or one from <a href="http://www.kessler-design.com/wireless/operatorlogo.php3">KESSLER'
48                                 .' Wireless Design</a>). This program uses only standard modem cable and integrated'
49                                 .' FaxModem capability of 9110.</p>'
50                                 .' <p>This software should be general-UNIX compatible. Please wait a minute when'
51                                 .' you run it, under various UNIXes it may take some time to finish.</p>'
52                                 .' <p><b>GSM network codes: </b>GSM network code needs to be given as parameter during'
53                                 .' sending of operator logo. Nice list of the codes you will find'
54                                 .' <a href="http://kbs.cs.tu-berlin.de/~jutta/gsm/gsm-list.html">here</a>.'
55                 );
56
57 1;