Jaipo

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.23	2017/02/21
	fixed test fail and cleanup messages

0.22	2017/02/13
	update docs, use MakeMaker, Twitter works again.

0.21	09 Apr 11 04/11/2009
		Fix some bugs.

0.2     09 Apr 10 04/10/2009
        Add auto-update mode.  and support desktop::notify for linux and
        mac::growl for Mac OS.

0.01    09 Feb 03 02/03/2009
        First version, released on an unsuspecting world.

lib/Jaipo/Notify/LibNotify.pm  view on Meta::CPAN

use warnings;
use strict;
#~ use Smart::Comments;
use Data::Dumper;
use base qw(Desktop::Notify);

=encoding utf8

=head1 NAME

Jaipo::Notify::LibNotify - A easy-to-use interface to show desktop notifications with libnotify.


=head1 SYNOPSIS

Jaipo::Notify::LibNotify is a easy-to-use interface to show desktop notifications with libnotify.
It doesn't use libnotify directly, but talking to libnotify via dbus.


	use Jaipo::Notify::LibNotify;

	my $notify = Jaipo::Notify::LibNotify->new();
	
	# yell for Service Notify.
	$notify->yell('Cannot connect to M$-Mi$roBlo$: $!');

lib/Jaipo/Notify/MacGrowl.pm  view on Meta::CPAN

package Jaipo::Notify::MacGrowl;

use warnings;
use strict;
use base 'Mac::Growl';

=encoding utf8

=head1 NAME

Jaipo::Notify::MacGrowl - A easy-to-use interface to show desktop notifications with Growl on Mac OSX.


=head1 SYNOPSIS

Jaipo::Notify::MacGrowl is a easy-to-use interface to show desktop notifications with Grwol on Mac OSX.


	use Jaipo::Notify::MacGrowl;

	my $notify = Jaipo::Notify::MacGrowl->new();
	
	# yell for Service Notify.
	$notify->yell('Cannot connect to M$-Mi$roBlo$: $!');
	# display for message displaying.
	$notify->display("From Mr.Right: Hello Darling. How are you today?");



( run in 0.287 second using v1.01-cache-2.11-cpan-299005ec8e3 )