~ubuntu-branches/ubuntu/trusty/horae/trusty

« back to all changes in this revision

Viewing changes to 0CPAN/Archive-Zip-1.16/lib/Archive/Zip/Tree.pm

  • Committer: Bazaar Package Importer
  • Author(s): Carlo Segre
  • Date: 2008-02-23 23:13:02 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080223231302-mnyyxs3icvrus4ke
Tags: 066-3
Apply patch to athena_parts/misc.pl for compatibility with 
perl-tk 804.28.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Revision: 1.11 $
2
 
#
3
 
 
4
 
=head1 NAME
5
 
 
6
 
Archive::Zip::Tree - methods for adding/extracting trees using Archive::Zip
7
 
 
8
 
=head1 SYNOPSIS
9
 
 
10
 
=head1 DESCRIPTION
11
 
 
12
 
This module is deprecated, because all its methods were moved into the main
13
 
Archive::Zip module.
14
 
 
15
 
It is included in the distribution merely to avoid breaking old code.
16
 
 
17
 
See L<Archive::Zip>.
18
 
 
19
 
=head1 AUTHOR
20
 
 
21
 
Ned Konz, perl@bike-nomad.com
22
 
 
23
 
=head1 COPYRIGHT
24
 
 
25
 
Copyright (c) 2000-2002 Ned Konz. All rights reserved.  This program is free
26
 
software; you can redistribute it and/or modify it under the same terms
27
 
as Perl itself.
28
 
 
29
 
=head1 SEE ALSO
30
 
 
31
 
L<Archive::Zip>
32
 
 
33
 
=cut
34
 
 
35
 
use Archive::Zip;
36
 
 
37
 
warn("Archive::Zip::Tree is deprecated; its methods have been moved into Archive::Zip.") if $^W;
38
 
 
39
 
1;