Netscape::Bookmarks::Alias - object for an Alias in a Netscape Bookmarks file |
Netscape::Bookmarks::Alias - object for an Alias in a Netscape Bookmarks file
use Netscape::Bookmarks; use Netscape::Bookmarks::Alias;
my $bookmarks = Netscape::Bookmarks->new();
my $alias = Netscape::Bookmarks::Alias->new();
$bookmarks->add( $alias ); # ... and other Netscape::Bookmark::Category methods
This module provides an abstraction for an Alias object in a Netscape Bookmarks file. An alias is simply a reference to another link in the Bookmarks file, henceforth called the target. If you change the alias, the target link also changes.
alias_of()
Netscape::Bookmarks::Link
object if the target exists, or
undef in scalar context or the empty list in list context if the
target does not exist. If you want to simply check to see if a
target exists, use target_exists
.
This source is part of a SourceForge project which always has the latest sources in CVS, as well as all of the previous releases.
http://sourceforge.net/projects/nsbookmarks/
If, for some reason, I disappear from the world, one of the other members of the project can shepherd this module appropriately.
brian d foy, <bdfoy@cpan.org>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
If you send me modifications or new features, I will do my best to incorporate them into future versions.
the Netscape::Bookmarks manpage
Netscape::Bookmarks::Alias - object for an Alias in a Netscape Bookmarks file |