README for Filesys::Virtual::DAAP 0.02

=head1 NAME

Filesys::Virtual::DAAP - present a DAAP share as a VFS

=head1 SYNOPSIS

use Filesys::Virtual::DAAP;
my $fs = Filesys::Virtual::DAAP->new({
    host      => 'localhost',
    port      => 3689, # the default
    cwd       => '/',
    root_path => '/',
    home_path => '/home',
});
my @albums    = $fs->list("/Library");
my @playlists = $fs->list("/Playlists");



=head1 DEPENDENCIES

This module has external dependencies on the following modules:

Class::Accessor
Filesys::Virtual
Net::DAAP::Client::Auth        0.12
perl   5.006

=head1 INSTALLATION

perl Build.PL
perl Build test

and if all goes well

perl Build install

=head1 HISTORY

What changed over the last 3 revisions

=over

=item 0.02      Tuesday 18th May, 2004

       docubug - it's Net::DAV::Server not Net::Server::DAV (doh)
       Threw in some more gurards against invalid file paths.
       Removed a stealth dependency on YAML.


=item 0.01      Monday 17th May, 2004

       Initial CPAN release
=back

=head1 AUTHOR

Richard Clamp <[email protected]>

=head1 COPYRIGHT

Copyright 2004 Richard Clamp.  All Rights Reserved.

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

=head1 SEE ALSO

L<Net::DAAP::Client::Auth>, L<Net::DAV::Server>, L<POE::Component::Server::FTP>