# $Id$ # Main page of 'My::Project::mdsms' # Copyright (C) 2003-2005 Jan Kratochvil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; exactly version 2 of June 1991 is required # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA package project::mdsms::Index; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; our $CVS_ID=q$Id$; use strict; use warnings; use My::Web; Wuse 'project::Lib'; our @ListItem=( "name"=>"mdsms", "platform"=>"unixuser", "priority"=>600, "icon"=>"siemens_m20t-icon.jpeg", "download-i386 RPM package"=>"dist/mdsms-1.5.3-0.i386.rpm", "download-sources RPM package"=>"dist/mdsms-1.5.3-0.src.rpm", "download-sources .tar.gz"=>"dist/mdsms-1.5.3.tar.gz", "download-sources .tar.Z"=>"dist/mdsms-1.5.3.tar.Z", "download-logos from KESSLER Wireless Design"=>"http://www.kessler-design.com/wireless/samples.php3", "cvs"=>"mdsms", "link-Freshmeat"=>sub { return a_href('http://freshmeat.net/projects/mdsms/','Mobile Device SMS tool'); }, "summary"=>"Mobile Device SMS Tool", "license"=>"GPL", "maintenance"=>"ready", "sponsorship"=>sub { return join(", ", a_href('http://www.tencom.cz/','TENcom Trade') .'/'.a_href_cc({""=>'http://www.sme.cz/default.asp?lng=en&ver=html', "CZ"=>'http://www.sme.cz/'},'SME'), a_href('http://www.readynote.com/','ReadyNote'), a_href('http://www.atspraha.cz/','Advanced Telecom Services')); }, "language"=>"C", "description"=>sub { return <<"HERE"; },

Program sends NOL or NGG files as Nokia operator logo or group graphics through @{[ a_href 'http://www.nokia.com/','Nokia' ]} @{[ a_href 'http://www.communicator.org/','Communicator' ]} 9110 (@{[ a_href 'http://www.nokia.com/phones/9000i','9000/9000i' ]} is not compatible). Usually you need to have either infra-red port in your computer or special FBUS cable to be able to use conventional logo-uploading tools (such as @{[ a_href 'http://www.gnokii.org/','gnokii' ]}). This program uses only standard modem cable and the integrated FaxModem capability of 9110.

HERE ); sub handler { project::Lib->init(); print <<"HERE";

This software should be general-UNIX compatible. Please wait a minute when you run it, under various UNIXes it may take some time to finish.

GSM network codes: GSM network code needs to be given as parameter during sending of operator logo. Nice list of the codes you will find @{[ a_href 'http://kbs.cs.tu-berlin.de/~jutta/gsm/gsm-list.html','here' ]}.

HERE exit; } 1;