Be::Attribute - get and set MIME file attributes


Be-Attribute documentation Contained in the Be-Attribute distribution.

Index


Code Index:

NAME

Top

Be::Attribute - get and set MIME file attributes

SYNOPSIS

Top

  use Be::Attribute;
  $node  = Be::Attribute::GetBNode("/my/file/here");
  @attrs = Be::Attribute::ListAttrs($node);
  for $i (@attrs) {
    print "$i - ", Be::Attribute::ReadAttr($node, $i), "\n";
  }
  Be::Attribute::CloseNode($node);

DESCRIPTION

Top

Get (or set) MIME file attributes.

USAGE

Top

lookit the synopsis. look at example.pl. Look at the .xs code. Read the Node webpage.

AUTHOR

Top

Tom Spindler, dogcow@globalcenter.net

SEE ALSO

Top

http://www.be.com/documentation/be_book/The%20Storage%20Kit/Node.html


Be-Attribute documentation Contained in the Be-Attribute distribution.

package Be::Attribute;

use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);

require Exporter;
require DynaLoader;
require AutoLoader;

@ISA = qw(Exporter DynaLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw(
	
);
$VERSION = '0.2';

bootstrap Be::Attribute $VERSION;

# Preloaded methods go here.

# Autoload methods go after =cut, and are processed by the autosplit program.

1;
__END__
# Below is the stub of documentation for your module. You better edit it!
# yes, mom. -- dogcow