merge to 10219

This commit is contained in:
Colin Kuskie 2009-04-08 16:35:31 +00:00
parent ae28bf79c8
commit 4c1307e3d0
194 changed files with 8203 additions and 2134 deletions

View file

@ -45,6 +45,22 @@ These methods are available from this class:
=cut
#-------------------------------------------------------------------
=head2 unzip ( $storage, $filename )
Uncompress and/or expand an archive, based on the file extension of the filename.
Returns 1 if the unzip was successful. Returns 0 if there were problems.
=head3 $storage
A WebGUI::Storage object containing the archive.
=head3 $filename
The filename of the archive.
=cut
sub unzip {
my $self = shift;
my $storage = shift;
@ -78,8 +94,8 @@ sub unzip {
=head2 addRevision ( )
This method exists for demonstration purposes only. The superclass
handles revisions to ZipArchive Assets.
This method exists for demonstration purposes only. The superclass
handles revisions to ZipArchive Assets.
=cut