The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Netscape::Bookmarks::Separator - manipulate, or create Netscape Bookmarks files

SYNOPSIS

        use Netscape::Bookmarks::Category;
        use Netscape::Bookmarks::Separator;

        #add a separator to a category listing
        my $category  = Netscape::Bookmarks::Category->new( { ... } );
        my $separator = Netscape::Bookmarks::Separator->new();
        my $category->add( $separator );

        #print the separator
        #note that Netscape::Category::as_string does this for you
        print $separator->as_string;

DESCRIPTION

Store a Netscape bookmark separator object.

Methods

Netscape::Bookmarks::Separator->new

Creates a new Separator object. This method takes no arguments.

$obj->as_string

Prints the separator object in the Netscape bookmark format. One should not have to do this as Netscape::Bookmarks::Category will take care of it.

SOURCE AVAILABILITY

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.

AUTHOR

brian d foy <bdfoy@cpan.org>

COPYRIGHT AND LICENSE

Copyright (c) 2002-2007 brian d foy. All rights reserved.

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

SEE ALSO

Netscape::Bookmarks