r7657 - in /trunk/libcgi-uploader-perl: Changes debian/changelog lib/CGI/Uploader.pm

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


Author: dmn
Date: Mon Sep 17 12:24:11 2007
New Revision: 7657

URL: http://svn.debian.org/wsvn/?sc=1&rev=7657
Log:
* New upstream release
  no functionality changes; improved importing code style; clarify docs
  regarding file_scheme vs. file_name

Modified:
    trunk/libcgi-uploader-perl/Changes
    trunk/libcgi-uploader-perl/debian/changelog
    trunk/libcgi-uploader-perl/lib/CGI/Uploader.pm

Modified: trunk/libcgi-uploader-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libcgi-uploader-perl/Changes?rev=7657&op=diff
==============================================================================
--- trunk/libcgi-uploader-perl/Changes (original)
+++ trunk/libcgi-uploader-perl/Changes Mon Sep 17 12:24:11 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: trunk/libcgi-uploader-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libcgi-uploader-perl/debian/changelog?rev=7657&op=diff
==============================================================================
--- trunk/libcgi-uploader-perl/debian/changelog (original)
+++ trunk/libcgi-uploader-perl/debian/changelog Mon Sep 17 12:24:11 2007
@@ -1,3 +1,11 @@
+libcgi-uploader-perl (2.15-1) UNRELEASED; urgency=low
+
+  * New upstream release
+    no functionality changes; improved importing code style; clarify docs
+    regarding file_scheme vs. file_name
+
+ -- Damyan Ivanov <dmn at debian.org>  Mon, 17 Sep 2007 15:22:57 +0300
+
 libcgi-uploader-perl (2.14-2) unstable; urgency=low
 
   [ gregor herrmann ]

Modified: trunk/libcgi-uploader-perl/lib/CGI/Uploader.pm
URL: http://svn.debian.org/wsvn/trunk/libcgi-uploader-perl/lib/CGI/Uploader.pm?rev=7657&op=diff
==============================================================================
--- trunk/libcgi-uploader-perl/lib/CGI/Uploader.pm (original)
+++ trunk/libcgi-uploader-perl/lib/CGI/Uploader.pm Mon Sep 17 12:24:11 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