~ubuntu-branches/ubuntu/trusty/shutter/trusty

« back to all changes in this revision

Viewing changes to share/shutter/resources/modules/Shutter/Upload/FTP.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur
  • Date: 2009-08-06 16:29:32 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090806162932-g00c3k4obbdddb4u
Tags: 0.80.1-1
* New Upstream Version
  - update copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
###################################################
2
2
#
3
 
#  Copyright (C) Mario Kemper <mario.kemper@googlemail.com> and Shutter Team
 
3
#  Copyright (C) 2008, 2009 Mario Kemper <mario.kemper@googlemail.com> and Shutter Team
4
4
#
5
5
#  This file is part of Shutter.
6
6
#
22
22
 
23
23
package Shutter::Upload::FTP;
24
24
 
 
25
use SelfLoader;
25
26
use utf8;
26
27
use strict;
27
28
use Net::FTP;
63
64
        return $self;
64
65
}
65
66
 
 
67
1;
 
68
 
 
69
__DATA__
 
70
 
66
71
sub login {
67
72
        my ( $self, $uri, $username, $password ) = @_;
68
73