]> git.p6c8.net - selfforum.git/commitdiff
modified version check
authorndparker <>
Wed, 25 Jul 2001 21:09:35 +0000 (21:09 +0000)
committerndparker <>
Wed, 25 Jul 2001 21:09:35 +0000 (21:09 +0000)
selfforum-cgi/shared/Lock/API.pm
selfforum-cgi/shared/Lock/Exclusive.pm
selfforum-cgi/shared/Lock/Handle.pm
selfforum-cgi/shared/Lock/Symlink.pm
selfforum-cgi/shared/Lock/Unlink.pm
selfforum-cgi/shared/Lock/_simple.pm
selfforum-cgi/shared/Lock/_static.pm

index d832289ed5b86d0261ef9fc849e9c5285b2f74de..8210ef7aaba89b477ab24d03cf7a9b1981ed8782 100644 (file)
@@ -4,7 +4,7 @@ package Lock::API;
 #                                                                              #
 # File:        shared/Lock/API.pm                                              #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: system independent part of Locking and Filehandle class         #
 #              NOT FOR PUBLIC USE                                              #
@@ -12,10 +12,6 @@ package Lock::API;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
 use Carp;
 
 use base qw(
@@ -27,7 +23,11 @@ use base qw(
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 ### sub lock ###################################################################
 #
index d6243ec4ae3f10ea55b6a7d2f64fa15a9b730eb4..fbcf38d872d48ae696d351a3ceacc54ec26518c7 100644 (file)
@@ -4,7 +4,7 @@ package Lock::Exclusive;
 #                                                                              #
 # File:        shared/Lock/Exclusive.pm                                        #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: Locking and Filehandle class                                    #
 #              using O_EXCL and lock files                                     #
@@ -12,17 +12,17 @@ package Lock::Exclusive;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
 use Fcntl;
 
 ################################################################################
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 ### sub _simple_lock ###########################################################
 #
index 3287f6f179076dfbb994b89f4fd090b41dee3c96..e89f4b2e3c8a416d9c41371d6d16245d9082e895 100644 (file)
@@ -4,7 +4,7 @@ package Lock::Handle;
 #                                                                              #
 # File:        shared/Lock/Handle.pm                                           #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-30                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: belongs to Locking and Filehandle class                         #
 #              NOT FOR PUBLIC USE                                              #
@@ -12,19 +12,19 @@ package Lock::Handle;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
+use Symbol qw(gensym);
 
 use base   qw(Lock::_static);
 
-use Symbol qw(gensym);
-
 ################################################################################
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 ### sub new ####################################################################
 #
index 82ea283a488d0c2c56925e2e8941c68dbae693e2..dfe8fd1f53f2d8a2ae007c890210d627729be3ca 100644 (file)
@@ -4,7 +4,7 @@ package Lock::Symlink;
 #                                                                              #
 # File:        shared/Lock/Symlink.pm                                          #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: Locking and Filehandle class                                    #
 #              using symlinks                                                  #
@@ -12,17 +12,17 @@ package Lock::Symlink;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
 use Fcntl;
 
 ################################################################################
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 ### sub _simple_lock ###########################################################
 #
@@ -118,4 +118,4 @@ sub exsh_announced {-l shift -> exshlock}
 
 #
 #
-### end of Lock::Symlink #######################################################
+### end of Lock::Symlink #######################################################
\ No newline at end of file
index d7bd6ecbb782e9d6a2f0e16f5fe66c7779eeef55..b4770f37c0d83aeac8376a8c1bbcabc3094e2cda 100644 (file)
@@ -4,7 +4,7 @@ package Lock::Unlink;
 #                                                                              #
 # File:        shared/Lock/Unlink.pm                                           #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: Locking and Filehandle class                                    #
 #              using the atomic behavior of unlinkig files                     #
@@ -12,17 +12,17 @@ package Lock::Unlink;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
 use Fcntl;
 
 ################################################################################
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 ### sub _simple_lock ###########################################################
 #
@@ -121,4 +121,4 @@ sub exsh_announced {not -f shift -> exshlock}
 
 #
 #
-### end of Lock::Unlink ########################################################
+### end of Lock::Unlink ########################################################
\ No newline at end of file
index 7aae43ac4409601267a79ffd5c00277d4144db90..e281b127d9e61b2e0fabe63d1352cdbe7e23a380 100644 (file)
@@ -4,7 +4,7 @@ package Lock::_simple;
 #                                                                              #
 # File:        shared/Lock/_simple.pm                                          #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: belongs to Locking and Filehandle class                         #
 #              NOT FOR PUBLIC USE                                              #
@@ -12,17 +12,17 @@ package Lock::_simple;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
 use Fcntl;
 
 ################################################################################
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 ### sub _simple_esna ###########################################################
 #
index 37233deed1310d0a79667b1ddf83e919d3d1b725..6d58b2dbb80319cedd754d84d86c1848f652a8de 100644 (file)
@@ -4,7 +4,7 @@ package Lock::_static;
 #                                                                              #
 # File:        shared/Lock/_static.pm                                          #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: belongs to Locking and Filehandle class                         #
 #              NO PUBLIC USE                                                   #
@@ -14,17 +14,17 @@ package Lock::_static;
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
 use Carp;
 
 ################################################################################
 #
 # Version check
 #
-$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+# last modified:
+#    $Date$ (GMT)
+# by $Author$
+#
+sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
 
 ################################################################################
 #

patrick-canterino.de