~ubuntu-branches/debian/sid/padre/sid

« back to all changes in this revision

Viewing changes to lib/Padre/File.pm

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov, gregor herrmann, Damyan Ivanov
  • Date: 2009-11-18 17:48:27 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20091118174827-srz62scl23gdl88v
Tags: 0.50.ds1-1
[ gregor herrmann ]
* debian/control: change dependency on "libclass-xsaccessor-array-perl
  (>= 1.02)" to "libclass-xsaccessor-perl (>= 1.05-2) |
  libclass-xsaccessor-array-perl (>= 1.02)".

[ Damyan Ivanov ]
* New upstream release
  + copyright: add a new translator
    - describe share/doc/perlopref copyright and licensing
  + update patches:
    - refresh disable-tcp-server.patch
    - drop fix-man-whatis.patch and fix-pod.patch (merged upstream)
    - drop fix-helpprovider-with-no-perlopref.patch: no longer necessary
* repack.sh: in 0.49 padre.exe moved from script/ to bin/
  + perlopref is now properly licensed
* add perl (>= 5.10.1) as a preferred alternative to versioned (build)
  dependencies on libtest-simple-perl and libpod-simple-perl
* update debian/not-real-manual.list for 0.50 (one file added, two files
  changed in size)
* rules: remove cruft from padre.deb
  + license etc from perlopref directory (already present in d/copyright)
  + remove .po files from the .deb (there are .mo files installed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
use strict;
5
5
use warnings;
6
6
 
7
 
our $VERSION = '0.48';
 
7
our $VERSION = '0.50';
8
8
 
9
9
my %Registered_Modules;
10
10
 
61
61
 
62
62
}
63
63
 
64
 
=pot
 
64
=pod
65
65
 
66
66
=head1 METHODS
67
67
 
111
111
        } elsif ( $URL =~ /^https?\:\/\//i ) {
112
112
                require Padre::File::HTTP;
113
113
                $self = Padre::File::HTTP->new($URL);
 
114
        } elsif ( $URL =~ /^ftp?\:/i ) {
 
115
                require Padre::File::FTP;
 
116
                $self = Padre::File::FTP->new($URL);
114
117
        } else {
115
118
                require Padre::File::Local;
116
119
                $self = Padre::File::Local->new($URL);