| WWW-Ofoto documentation | Contained in the WWW-Ofoto distribution. |
WWW::KodakGallery - A module to interact with the Kodakgallery website
This module provides a basic interface to the KodakGallery
website (http://wwww.kodakgallery.com/). It simply subclasses the
WWW::Ofoto module, which provides all the functionality. See
WWW::Ofoto for documentation. You should be able to subsitute KodakGallery
for Ofoto. Or, you could just use the WWW::Ofoto directly; they are
interechangable.
The WWW::Ofoto module.
Mark Grimes, <mgrimes@cpan.org>
Copyright (C) 2005 by mgrimes
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.2 or, at your option, any later version of Perl 5 you may have available.
| WWW-Ofoto documentation | Contained in the WWW-Ofoto distribution. |
package WWW::KodakGallery; ########################################################################### # WWW::KodakGallery # Mark Grimes # $Id: KodakGallery.pm,v 1.4 2007/05/04 18:26:05 mgrimes Exp $ # # A perl module to interact with the ofoto website. # Copyright (c) 2005 (Mark Grimes). # All rights reserved. This program is free software; you can redistribute # it and/or modify it under the same terms as Perl itself. # # Formatted with tabstops at 4 # ########################################################################### use strict; use warnings; use base qw(WWW::Ofoto); our $VERSION = '1.28'; 1; __END__