X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=project%2Fmdsms%2FListItem.pm;h=b807a5a1df8a00ac176fe3faf8bcb5734270892d;hb=b4ddfba5b53a40e47285f8851e1ff7bb5419909b;hp=4dc644f2720b06e0393ddc855eab27e0c34e6f0b;hpb=d33b43a5557132098003a232b6c209abd3e4d135;p=www.jankratochvil.net.git diff --git a/project/mdsms/ListItem.pm b/project/mdsms/ListItem.pm index 4dc644f..b807a5a 100755 --- a/project/mdsms/ListItem.pm +++ b/project/mdsms/ListItem.pm @@ -18,42 +18,48 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -package My::Project::mdsms; +package project::mdsms::ListItem; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway -use vars qw($VERSION $CVS_ID); -$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; -$CVS_ID=q$Id$; +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; -our %ListItem=( - "name"=>"Mobile Device SMS Tool", - "priority"=>8, - "download-sources .tar.gz"=>"mdsms-1.5.2.tar.gz", - "download-sources .tar.Z"=>"mdsms-1.5.2.tar.Z", - "download-i386 RPM package"=>"mdsms-1.5.2-0.i386.rpm", - "download-sources RPM package"=>"mdsms-1.5.2-0.src.rpm", + +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", - "link-View CVS"=>"http://cvs.jankratochvil.net/viewcvs/mdsms/", - "summary"=>"Mobile communication", + "cvs"=>"mdsms", + "link-".a_href('http://freshmeat.net/','Freshmeat')=> + a_href('http://freshmeat.net/projects/mdsms/','Mobile Device SMS tool'), + "summary"=>"Mobile Device SMS Tool", "license"=>"GPL", - "maintenance"=>"finished", + "maintenance"=>"ready", + "sponsorship"=>join(", ", + a_href('http://www.tencom.cz/','TENcom Trade') + .'/'.a_href('http://www.sme.cz/default.asp?lng=en&ver=html','SME'), + a_href('http://www.readynote.com/','ReadyNote'), + a_href('http://www.atspraha.cz/','Advanced Telecom Services')), "language"=>"C", - "description"=>"" - .'

Sends NOL or NGG files as operator logo or group graphics through' - .' Nokia Communicator' - .' 9110 (9000/9000i is definitively 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 (GNokii' - .' or one from KESSLER' - .' Wireless Design). This program uses only standard modem cable and integrated' - .' FaxModem capability of 9110.

' - .'

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' - .' here.

' + "description"=><<"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 ); 1;