NAME

WWW::Shorten::Safe - Interface to shortening URLs using http://safe.mn/

VERSION

$Revision: 100 $

SYNOPSIS

WWW::Shorten::Safe provides an easy interface for shortening URLs using http://safe.mn/.

use WWW::Shorten::Safe;

my $url = "http://www.example.com";

my $tmp = makeashorterlink($url);
my $tmp1 = makealongerlink($tmp);

or

use WWW::Shorten::Safe;

my $url = "http://www.example.com";
my $safe = WWW::Shorten::Safe->new(URL   => $url);

$safe->shorten(URL => $url);
print "shortened URL is $safe->{safeurl}\n";

$safe->expand(URL => $safe->{safeurl});
print "expanded/original URL is $safe->{longurl}\n";

FUNCTIONS

new

Create a new safe.mn object.

my $safe = WWW::Shorten::Safe->new(URL => "http://www.example.com/this_is_one_example.html");

The function makeashorterlink will call the safe.mn API site passing it your long URL and will return the shorter safe.mn version.

The function makealongerlink does the reverse. makealongerlink will accept as an argument the full safe.mn URL.

If anything goes wrong, then the function will return undef.

shorten

Shorten a URL using http://safe.mn/. Calling the shorten method will return the shortened URL but will also store it in safe.mn object until the next call is made.

my $url = "http://www.example.com";
my $shortstuff = $safe->shorten(URL => $url);

print "safeurl is " . $safe->{safeurl} . "\n";
or
print "safeurl is $shortstuff\n";

expand

Expands a shortened safe.mn URL to the original long URL.

version

Gets the module version number

AUTHOR

Julien Sobrier, <jsobrier at safe.mn>

BUGS

Please report any bugs or feature requests to jsobrier at safe.mn.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc WWW::Shorten::Safe

You can also look for information at:

ACKNOWLEDGEMENTS

Dave Cross for WWW::Shorten. .

COPYRIGHT & LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

SEE ALSO

perl, WWW::Shorten, http://safe.mn/tools/#api.