Netscape::Bookmarks::Separator - manipulate, or create Netscape Bookmarks files |
Netscape::Bookmarks::Separator - manipulate, or create Netscape Bookmarks files
use Netscape::Bookmarks::Category; use Netscape::Bookmarks::Separator;
#add a separator to a category listing my $category = new Netscape::Bookmarks::Category { ... }; my $separator = new Netscape::Bookmarks::Separator; my $category->add($separator);
#print the separator #note that Netscape::Category::as_string does this for you print $separator->as_string;
Store a Netscape bookmark separator object.
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 <comdog@panix.com>
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::Separator - manipulate, or create Netscape Bookmarks files |