r7655 - in /branches/upstream/libcgi-uploader-perl/current: Changes lib/CGI/Uploader.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Sep 17 12:22:13 UTC 2007


Author: dmn
Date: Mon Sep 17 12:22:13 2007
New Revision: 7655

URL: http://svn.debian.org/wsvn/?sc=1&rev=7655
Log:
[svn-upgrade] Integrating new upstream version, libcgi-uploader-perl (2.15)

Modified:
    branches/upstream/libcgi-uploader-perl/current/Changes
    branches/upstream/libcgi-uploader-perl/current/lib/CGI/Uploader.pm

Modified: branches/upstream/libcgi-uploader-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcgi-uploader-perl/current/Changes?rev=7655&op=diff
==============================================================================
--- branches/upstream/libcgi-uploader-perl/current/Changes (original)
+++ branches/upstream/libcgi-uploader-perl/current/Changes Mon Sep 17 12:22:13 2007
@@ -1,4 +1,11 @@
 Revision history for Perl extension CGI::Uploader.
+
+2.15 Sun Jul 15 07:21:24 EDT 2007
+    - no functionality changes
+
+    [INTERNAL]
+    - improved importing code style.
+    - Clarify docs regarding file_scheme vs. file_name (Jaldhar)
 
 2.14 Thu May 24 13:19:27 EDT 2007
 

Modified: branches/upstream/libcgi-uploader-perl/current/lib/CGI/Uploader.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcgi-uploader-perl/current/lib/CGI/Uploader.pm?rev=7655&op=diff
==============================================================================
--- branches/upstream/libcgi-uploader-perl/current/lib/CGI/Uploader.pm (original)
+++ branches/upstream/libcgi-uploader-perl/current/lib/CGI/Uploader.pm Mon Sep 17 12:22:13 2007
@@ -3,16 +3,16 @@
 use 5.005;
 use strict;
 use Carp;
-use Params::Validate qw/:all/;
+use Params::Validate ':all';
 use File::Path;
 use File::Spec;
-use File::Temp qw/tempfile/;
+use File::Temp 'tempfile';
 use Carp::Assert;
 use Image::Size;
 require Exporter;
-use vars qw($VERSION);
-
-$VERSION = '2.14';
+use vars '$VERSION';
+
+$VERSION = '2.15';
 
 =head1 NAME
 
@@ -232,7 +232,13 @@
  2/0/2/123.jpg
 
 This should scale well to millions of files. If you want even more control,
-consider overriding the C<build_loc()> method.
+consider overriding the C<build_loc()> method, which is  used to return the
+stored file path.
+
+Note that specifying the file storage scheme for the file system is not related
+to the C<file_name> stored in the database, which is always the original uploaded
+file name.
+
 
 =back 
 




More information about the Pkg-perl-cvs-commits mailing list