&My::Web::footer call is deprecated now, use just: exit;
[www.jankratochvil.net.git] / project / mdsms / Index.pm
1 # $Id$
2 # Main page of 'My::Project::mdsms'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::mdsms::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"mdsms",
32                 "platform"=>"unixuser",
33                 "priority"=>600,
34                 "icon"=>"siemens_m20t-icon.jpeg",
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-Freshmeat"=>sub {
42                                 return a_href('http://freshmeat.net/projects/mdsms/','Mobile Device SMS tool');
43                                 },
44                 "summary"=>"Mobile Device SMS Tool",
45                 "license"=>"GPL",
46                 "maintenance"=>"ready",
47                 "sponsorship"=>sub { return join(", ",
48                                 a_href('http://www.tencom.cz/','TENcom Trade')
49                                                 .'/'.a_href_cc({""=>'http://www.sme.cz/default.asp?lng=en&ver=html',
50                                                               "CZ"=>'http://www.sme.cz/'},'SME'),
51                                 a_href('http://www.readynote.com/','ReadyNote'),
52                                 a_href('http://www.atspraha.cz/','Advanced Telecom Services'));
53                                 },
54                 "language"=>"C",
55                 "description"=>sub { return <<"HERE"; },
56 <p>Program sends NOL or NGG files as Nokia operator logo or group graphics through
57 @{[ a_href 'http://www.nokia.com/','Nokia' ]} @{[ a_href 'http://www.communicator.org/','Communicator' ]}
58 9110 (@{[ a_href 'http://www.nokia.com/phones/9000i','9000/9000i' ]}
59 is not compatible). Usually you need
60 to have either infra-red port in your computer or special FBUS cable to be able
61 to use conventional logo-uploading tools (such as @{[ a_href 'http://www.gnokii.org/','gnokii' ]}).
62 This program uses only standard modem cable and the integrated
63 FaxModem capability of 9110.</p>
64 HERE
65                 );
66
67 sub handler
68 {
69 project::Lib->init();
70
71
72 print <<"HERE";
73 <p>This software should be general-UNIX compatible. Please wait a minute when
74 you run it, under various UNIXes it may take some time to finish.</p>
75 <p><b>GSM network codes: </b>GSM network code needs to be given as parameter during
76 sending of operator logo. Nice list of the codes you will find
77 @{[ a_href 'http://kbs.cs.tu-berlin.de/~jutta/gsm/gsm-list.html','here' ]}.</p>
78 HERE
79
80
81 exit;
82 }
83 1;