The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
README for Filesys::Virtual::DAAP 0.04

=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
 Filesys::Virtual::Plain
 Net::DAAP::Client	0.4
 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.04	Tuesday 22nd March, 2005	

	Filesys::Virtual plain has its own dist now, so needs a
	seperate line in the Build.PL
	Deleted the reference to rt.cpan.org as I don't want to use it anymore.


=item 0.03   Monday 26th July, 2004

	Depend on Net::DAAP::Client 0.4 so we can extend the SONG_ATTRIBUTES


=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.

=back

=head1 AUTHOR

Richard Clamp <richardc@unixbeard.net>

=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>