Main > Free Download Search >

Free mobile text entry software for linux

mobile text entry

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3936
Mobile Web Proxy 1.0

Mobile Web Proxy 1.0


Mobile Web Proxy is a (CGI) tool to make more Web pages available from some mobile devices (cell phone Web browsers, etc.). more>>
Mobile Web Proxy is a (CGI) tool to make more Web pages available from some mobile devices (cell phone Web browsers, etc.).
When I began using my cell phones mobile web browser, one of the things I realized was that there were a lot of web pages that my cell phones web browser simply wouldnt let me see. My shiny new Motorola Razr from T-Mobile, for many pages, would display an error message like "413: Page cannot be displayed." It happened annoyingly often; browsing the web from my cell phone was a lot like trying to read a book or a magazine with large chunks simply ripped out. And when I tried troubleshooting, I might have missed something, but it seemed like a big problem without an easily available solution.
So I tried to provide my own solution. I made a proxy that would present webpages for the mobile web so that they would display in a way that would work for my cell phones web browser. Technologies include paging, tag cleaning, and optional caching to improve performance, but without getting into technical details, this means that I can access some pages on the web that I couldnt access earlier.
Enhancements:
- A bug that caused the script to spuriously report 404 errors was fixed.
- A smaller default page size was set so that tag-rich pages would be rendered in a way more likely to be displayable on mobile Web browsers.
<<less
Download (0.017MB)
Added: 2007-08-04 License: Perl Artistic License Price:
911 downloads
Mobile::UserAgent 1.05

Mobile::UserAgent 1.05


Mobile::UserAgent is a mobile user agent string parsing class. more>>
Mobile::UserAgent is a mobile user agent string parsing class.

SYNOPSIS

### Print the information parsed from a user-agent string:
use Mobile::UserAgent;
my $useragent = Nokia6600/1.0 (4.09.1) SymbianOS/7.0s Series60/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.0;
my $uaobj = new Mobile::UserAgent($useragent);
if ($uaobj->success()) {
print Vendor: . $uaobj->vendor() . "n";
print Model: . $uaobj->model() . "n";
print Version: . $uaobj->version() . "n";
print Series60: . $uaobj->isSeries60() . "n";
print Imode?: . $uaobj->isImode() . "n";
print Mozilla?: . $uaobj->isMozilla() . "n";
print Standard?: . $uaobj->isStandard() . "n";
print Rubbish?: . $uaobj->isRubbish() . "n";
}
else {
print "Not a mobile user-agent: $useragentn";
}


### Determine if the client is a mobile device.
use Mobile::UserAgent ();
use CGI ();

# Check 1: (check if it sends a user-agent profile URL in its headers)
foreach my $name (X_WAP_PROFILE,PROFILE,13_PROFILE,56_PROFILE) {
if (exists($ENV{"HTTP_$name"})) {
print "Client has a user-agent profile header, so its probably a mobile device.n";
last;
}
}

# Check 2: (check if it supports WML):
my $q = new CGI();
if ($q->Accept(text/vnd.wap.wml) == 1) {
print "Client supports WML so its probably a mobile device.n";
}

# Check 3: (check if this class can parse it)
my $uaobj = new Mobile::UserAgent();
if ($uaobj->success()) {
print "Clients user-agent could be parsed, so its a mobile device.n";
}

Parses a mobile user agent string into its basic constituent parts, the most important being vendor and model.

One reason for doing this would be to use this information to lookup vendor-model specific device characteristics in a database. You can use also use user agent profiles to do this (for which Ive developed other classes), but not all mobile phones have these, especially the older types. Another reason would be to detect if the visiting client is a mobile handset.

Only real mobile user-agent strings can be parsed succesfully by this class. Most WAP emulators are not supported because they usually dont use the same user-agent strings as the devices they emulate.

<<less
Download (0.037MB)
Added: 2007-03-22 License: Perl Artistic License Price:
957 downloads
Multiple Time Sheets 4

Multiple Time Sheets 4


Multiple Time Sheets is a simple tool to help you keep track of how many hours you work and for whom. more>>
Multiple Time Sheets is a simple tool to help you keep track of how many hours you work and for whom.
It differs from most time-tracking software because its designed to work like paper that magically totals up hours.
Main features:
- Uses text files, requiring no database.
- Supports only one user per app, for simpler code.
- Sends and tracks invoices, and payments thereof.
- Features a rudimentary to-do list that displays your list as an outline.
- Sends you a backup of your data automatically.
- Assume the user prefers free-form data entry in text files rather than typing into forms.
- Uses the htmlMimeMail.php class by Richard Heye (phpguru.org).
- CSV and OPML exports of some data.
- Automatic hyperlinking from MTS to your favorite web-based software.
Enhancements:
- This release added a feature that replaces text patterns with links so that strings like "Bug 10" can link to a bug tracking application.
- CSV export was added for the timesheet along with OPML export for the to-do list.
<<less
Download (0.039MB)
Added: 2006-01-31 License: Public Domain Price:
1364 downloads
Edit by Text Editors 0.1

Edit by Text Editors 0.1


Edit by Text Editors allows you to open a file with Kate, Kwrite, Kedit, Khexedit by a KDE service menu. more>>
Edit by Text Editors allows you to open a file with Kate, Kwrite, Kedit, Khexedit by a KDE service menu.

To install the service menu you must copy editby.desktop in ~/.kde/share/apps/konqueror/servicemenus

<<less
Download (MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
814 downloads
Zen explorer desktop entry 0.01

Zen explorer desktop entry 0.01


Zen explorer desktop entry adds a service menu with the option to send a music file to your Creative zen jukebox. more>>
Zen explorer desktop entry adds a service menu with the option to send a music file to your Creative zen jukebox.

Ive only tested it with Zen V Plus 2 gig, but it uses libmtp to send the file. Not too exciting, i wrote it in less than a minute.
<<less
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1043 downloads
Convert::yEnc::Entry 1.02

Convert::yEnc::Entry 1.02


Convert::yEnc::Entry is a Perl module as an entry in a Convert::yEnc::RC database. more>>
Convert::yEnc::Entry is a Perl module as an entry in a Convert::yEnc::RC database.

SYNOPSIS

use Convert::yEnc::Entry;

$entry = new Convert::yEnc::Entry { size => 10000 };
$entry = new Convert::yEnc::Entry { size => 50000, part => 1 };

$entry = load Convert::yEnc::Entry "10000t10000";
$entry = load Convert::yEnc::Entry "20000t1-20000t1-2";

$ok = $entry->ybegin( { size=>10000 } );
$ok = $entry->ypart ( { begin=>1, end=>10000 } );
$ok = $entry->yend ( { size=>10000 } );

$entry->complete and ...

print "$entryn";

ABSTRACT

An entry in a Convert::yEnc::RC database

Convert::yEnc::Entry manages a single entry in a Convert::yEnc::RC database

<<less
Download (0.055MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1163 downloads
OpenDocument Text Library 0.0.1

OpenDocument Text Library 0.0.1


OpenDocument Text Library for creating OpenDocument text files. more>>
There are some interesting projects (OpenDocumentPHP, OpenDocument Fellowship) around the creation of OpenDocument Text from a Web-application.

Thus far none of these projects yielded a result to create an OpenDocument Text. Therefore - and inspired by an article in the German cumuter magasin ct - I desiced to implement a libary that takes a template document and adds some to it.

<<less
Download (0.037MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
658 downloads
MobiLog! 1.0

MobiLog! 1.0


MobiLog! is an incredibly useful open source tool for moblogging (mobile weblogging). more>>
MobiLog! is an incredibly useful open source tool for moblogging (mobile weblogging).
MobiLog! project works like this: Once set up, you simply send an email using your cell phone (or other mobile device, such as a PDA) to a specified email address.
Within minutes, whatever you sent will automatically appear on your site. With support for image attachments, you can even use your cell phones built-in camera to post a picture online - without the need to be at your computer.
Moblogging is an increasingly popular way to keep your sites visitors in touch with what you are doing while away from the computer.
Most current mobloggers are hobbyists or journalists, with the relative lack of easy-to-use tools keeping moblogging out of the mainstream. The goal of MobiLog! is to make it easier for anyone to maintain a mobile weblog while on the road.
Main features:
- Mobile submission of moblog entries from any email-capable device (cell phone, PDA,etc).
- Entry submission security (ie. password protection).
- PHP-based moblog entry archive.
- GIF/JPEG/PNG image support.
- Thumbnail creation using ImageMagick (optional).
- Atom v1.0 feed generation.
<<less
Download (0.019MB)
Added: 2006-02-08 License: BSD License Price:
1353 downloads
SirTobis ButtonBar 0.5

SirTobis ButtonBar 0.5


SirTobis ButtonBar is a GTK button bar. more>>
SirTobis ButtonBar is a small GTK button bar.
It has few dependencies, is highly configurable, and is intended to be used for administrating remote servers.
Main features:
- tiny and fast
- show load, user and host
- command entry
- menus and submenus
- vertical or horizontal alignement
- with or withour tooltips, icons, text
<<less
Download (0.014MB)
Added: 2006-09-30 License: (FDL) GNU Free Documentation License Price:
1120 downloads
Mobile::Messaging::ParlayX 0.0.2

Mobile::Messaging::ParlayX 0.0.2


Mobile::Messaging::ParlayX is a Perl interface to ParlayX OSA. more>>
Mobile::Messaging::ParlayX is a Perl interface to ParlayX OSA.

SYNOPSIS

use Mobile::Messaging::ParlayX;

Mobile::Messaging::ParlayX is an interface to ParlayX web service by Sony Ericsson for SMS and MMS messaging, among other things. This being a Web Service SOAP::Lite would probably be better suited to the task, but I decided to stick with LWP::UserAgent, HTTP::Request and XML::LibXML until things in SOAP::Lite stabilize (it is currently under rewrite as far as I know) and I have more time (not that this will happen anytime soon).

Besides, I cannot fully grasp ParlayX just yet, thanks to inadequate documentation and JAVA only code samples for it. Anyway, you need LWP::UserAgent, HTTP::Request and XML::LibXML for this module to work. Most are in the standard distribution already, but any of them are available at your local CPAN mirror.

I tried not to stray too far off the ``native JAVA names of methos and properties, but chances are some differences exist.

<<less
Download (0.010MB)
Added: 2007-06-08 License: Perl Artistic License Price:
872 downloads
Linux-Mobile-Guide 3.19

Linux-Mobile-Guide 3.19


The Linux-Mobile-Guide is a guide for users of Linux and laptops, notebooks, PDAs and other mobile computers. more>>
The Linux-Mobile-Guide is a guide for users of Linux and laptops, notebooks, PDAs and other mobile computers.
This guide was former known as Linux-Laptop-HOWTO but was now extended to cover Linux and mobile computer devices in general (laptops, PDAs, mobile cell phones, digital cameras, calculators, wearables, ...). These devices are different from desktop/tower computers.
They use certain hardware such as PCMCIA cards, infrared and BlueTooth ports, batteries, docking stations. Hardware parts cannot be changed as easily as in a desktops, e.g. the graphics card. Often their hardware is more limited (e.g. disk space, CPU speed).
Hardware support for Linux (and other operating systems) on mobile devices is sometimes more limited (e.g. graphics chips, internal modems). They often use specialized hardware, hence finding a driver can be more difficult. Many times they are used in changing environments, so there is a need for multiple configurations and additional security strategies.
The Linux-Mobile-Guide explains installation methods for laptops and PDAs and configurations for different (network) environments, security issues for portable computers and much more. TuxMobil is the origin of the Linux-Mobile-Guide and provides always the latest issue available for download.
Enhancements:
- A link to keytouch has been made in the Extra Keys section.
<<less
Download (0.21MB)
Added: 2005-11-15 License: (FDL) GNU Free Documentation License Price:
1445 downloads
Mobile::Wurfl 1.06

Mobile::Wurfl 1.06


Mobile::Wurfl is a Perl module interface to WURFL (the Wireless Universal Resource File. more>>
Mobile::Wurfl is a Perl module interface to WURFL (the Wireless Universal Resource File.

SYNOPSIS

my $wurfl = Mobile::Wurfl->new(
wurfl_home => "/path/to/wurfl/home",
db_descriptor => "DBI:mysql:database=wurfl:host=localhost",
db_username => wurfl,
db_password => wurfl,
wurfl_url => q{http://wurfl.sourceforge.net/wurfl.xml}
);

my $dbh = DBI->connect( $db_descriptor, $db_username, $db_password );
my $wurfl = Mobile::Wurfl->new( dbh => $dbh );

my $desc = $wurfl->get( db_descriptor );
$wurfl->set( wurfl_home => "/another/path" );

$wurfl->create_tables( $sql );
$wurfl->update();
$wurfl->get_wurfl();
$wurfl->rebuild_tables();

my @devices = $wurfl->devices();

for my $device ( @devices )
{
print "$device->{user_agent} : $device->{id}n";
}

my @groups = $wurfl->groups();
my @capabilities = $wurfl->capabilities();
for my $group ( @groups )
{
@capabilities = $wurfl->capabilities( $group );
}

my $ua = $wurfl->canonical_ua( "SonyEricssonK750i/R1J Browser/SEMC-Browser/4.2 Profile/MIDP-2.0 Configuration/CLDC-1.1" );
my $deviceid = $wurfl->deviceid( $ua );

my $wml_1_3 = $wurfl->lookup( $ua, "wml_1_3" );
print "$wml_1_3->{name} = $wml_1_3->{value} : in $wml_1_3->{group}n";
my $fell_back_to = wml_1_3->{deviceid};
my $width = $wurfl->lookup_value( $ua, "max_image_height", no_fall_back => 1 );
$wurfl->cleanup();

Mobile::Wurfl is a perl module that provides an interface to mobile device information represented in wurfl (http://wurfl.sourceforge.net/). The Mobile::Wurfl module works by saving this device information in a database (preferably mysql).

It offers an interface to create the relevant database tables from a SQL file containing "CREATE TABLE" statements (a sample is provided with the distribution). It also provides a method for updating the data in the database from the wurfl.xml file hosted at http://www.nusho.it/wurfl/dl.php?t=d&f=wurfl.xml.
It provides methods to query the database for lists of capabilities, and groups of capabilities. It also provides a method for generating a "canonical" user agent string (see "canonical_ua").

Finally, it provides a method for looking up values for particular capability / user agent combinations. By default, this makes use of the hierarchical "fallback" structure of wurfl to lookup capabilities fallback devices if these capabilities are not defined for the requested device.

<<less
Download (0.10MB)
Added: 2007-03-22 License: Perl Artistic License Price:
953 downloads
Text Text Revolution 0.11

Text Text Revolution 0.11


Text Text Revolution project is a text-based ncurses DDR clone. more>>
Text Text Revolution project is a text-based ncurses DDR clone.
Text Text Revolution is a text-based Dance Dance Revolution clone.
It supports pyDDRs .step file format (which has now been superceeded by the .dance format), and plans to stream OGG, MP3, or WAV files.
Enhancements:
- Joystick (DDR mat) support is working now. use the -j switch. Its currently hardcoded to use /dev/input/js0.
- Some graphics code was cleaned up, and it is now possible to specify the difficulty (--light, --standard, --hard, or -ln, where n is 1, 2, or 3).
<<less
Download (0.044MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1054 downloads
GNU Mobile-remix 1.0

GNU Mobile-remix 1.0


GNU Mobile-remix 1.0 provides you with another dark theme for your GNOME desktop. more>>
GNU Mobile-remix 1.0 provides you with another dark theme for your GNOME desktop. It is a mix between the GNU mobile and GNU Tierra themes.

GNOME is an international effort to build a complete desktop environment the graphical user interface which sits on top of a computer operating system entirely from free software. This goal includes creating software development frameworks, selecting application software for the desktop, and working on the programs which manage application launching, file handling, and window and task management.

GNOME is part of the GNU Project and can be used with various Unix-like operating systems, most notably Linux, and as part of Java Desktop System in Solaris.

Enhancements:

  • Corrected a few mistakes
  • Corrected menubar for those without globalmenu.
  • Changed Menu colours.

Requirements:

  • GNOME
  • Patched pixbuf
  • Mist engines installed.
<<less
Added: 2009-02-06 License: GPL Price: FREE
1 downloads
Net::Google::Calendar::Entry 0.5

Net::Google::Calendar::Entry 0.5


Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar. more>>
Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar.

SYNOPSIS

my $event = Net::Google::Calendar::Entry->new();
$event->title(Party!);
$event->content(P-A-R-T-Why? Because we GOTTA!);
$event->location("My Flat, London, England");
$event->status(confirmed);
$event->transparency(opaque);
$event->visibility(private);

my $author = Net::Google::Calendar::Person->new;
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);

<<less
Download (0.009MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1063 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5