]> git.p6c8.net - selfforum.git/commitdiff
modified version check
authorndparker <>
Thu, 26 Jul 2001 00:08:23 +0000 (00:08 +0000)
committerndparker <>
Thu, 26 Jul 2001 00:08:23 +0000 (00:08 +0000)
selfforum-cgi/shared/CheckRFC.pm
selfforum-cgi/shared/Conf.pm
selfforum-cgi/shared/Id.pm
selfforum-cgi/shared/Lock.pm
selfforum-cgi/shared/Template.pm

index b000dcff7f737918538be98882ee8daac16e0bef..b43d723ff9e326d81a01712ae54d6756c416ec67 100644 (file)
@@ -4,7 +4,7 @@ package CheckRFC;
 #                                                                              #
 # File:        shared/CheckRFC.pm                                              #
 #                                                                              #
 #                                                                              #
 # File:        shared/CheckRFC.pm                                              #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-04-14                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: implement several string checks on RFC correctness              #
 #                                                                              #
 #                                                                              #
 # Description: implement several string checks on RFC correctness              #
 #                                                                              #
@@ -17,7 +17,6 @@ use vars qw(
   @email
   @EXPORT
   @ISA
   @email
   @EXPORT
   @ISA
-  $VERSION
 );
 
 $v56 = eval q[
 );
 
 $v56 = eval q[
@@ -27,9 +26,15 @@ $v56 = eval q[
 
 use Carp qw(croak);
 
 
 use Carp qw(croak);
 
+################################################################################
+#
 # Version check
 #
 # 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'}
 
 ################################################################################
 #
 
 ################################################################################
 #
@@ -309,7 +314,7 @@ BEGIN {
   }
 }
 
   }
 }
 
-# keeping require happy
+# keep 'require' happy
 1;
 
 #
 1;
 
 #
index c0920d019804317519f9d8a6e7d44ca9686106d8..eead4dcee3a217caecb22d869532f7e0c6c4d348 100644 (file)
@@ -4,7 +4,7 @@ package Conf;
 #                                                                              #
 # File:        shared/Conf.pm                                                  #
 #                                                                              #
 #                                                                              #
 # File:        shared/Conf.pm                                                  #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-06-16                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: read and parse configuration files                              #
 #                                                                              #
 #                                                                              #
 # Description: read and parse configuration files                              #
 #                                                                              #
@@ -13,15 +13,19 @@ package Conf;
 use strict;
 use vars qw(
   @EXPORT
 use strict;
 use vars qw(
   @EXPORT
-  $VERSION
 );
 
 use XML::DOM;
 
 ################################################################################
 );
 
 use XML::DOM;
 
 ################################################################################
+#
 # Version check
 #
 # 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'}
 
 ################################################################################
 #
 
 ################################################################################
 #
@@ -164,8 +168,6 @@ sub parse_script_conf ($\%$) {
 #         $Shared - /path/to/shared-dir   #        -- " --
 #         $Script - scriptname
 #
 #         $Shared - /path/to/shared-dir   #        -- " --
 #         $Script - scriptname
 #
-# Return: hashref of config hash
-#
 sub read_script_conf ($$$) {
   my ($Config, $Shared, $Script) = @_;
 
 sub read_script_conf ($$$) {
   my ($Config, $Shared, $Script) = @_;
 
@@ -209,4 +211,4 @@ ref($_)eq 'HASH'){&hash($_,"$string\[$i] -> ")}else{if(ref($_)eq'ARRAY'){
 
 #
 #
 
 #
 #
-### *real* end of Conf ;-) #####################################################
+### *real* end of Conf ;-) #####################################################
\ No newline at end of file
index 8e9137920b377dfe2b049ce63147e24f09721206..4d0914332a6a106a9f95e2611d6daf7da44be668 100644 (file)
@@ -4,7 +4,7 @@ package Id;
 #                                                                              #
 # File:        shared/Id.pm                                                    #
 #                                                                              #
 #                                                                              #
 # File:        shared/Id.pm                                                    #
 #                                                                              #
-# Authors:     André Malo <nd@o3media.de>, 2001-05-03                          #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: compose an unique ID (in CGI context)                           #
 #                                                                              #
 #                                                                              #
 # Description: compose an unique ID (in CGI context)                           #
 #                                                                              #
@@ -14,14 +14,17 @@ use strict;
 use vars qw(
   @table
   @EXPORT
 use vars qw(
   @table
   @EXPORT
-  $VERSION
 );
 
 ################################################################################
 #
 # Version check
 #
 );
 
 ################################################################################
 #
 # 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'}
 
 ################################################################################
 #
 
 ################################################################################
 #
index 55ab59f8e46eab7addfbc79131fdfc0af6430beb..6dbef1aaa38a71d79695c38426b63457b2393bd2 100644 (file)
@@ -2,20 +2,15 @@ package Lock;
 
 ################################################################################
 #                                                                              #
 
 ################################################################################
 #                                                                              #
-# File:        shared/Locked.pm                                                #
+# File:        shared/Lock.pm                                                  #
 #                                                                              #
 #                                                                              #
-# Authors:     Andre Malo       <nd@o3media.de>, 2001-05-25                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
 #                                                                              #
 # Description: Locking and Filehandle class                                    #
 #                                                                              #
 ################################################################################
 
 use strict;
 #                                                                              #
 # Description: Locking and Filehandle class                                    #
 #                                                                              #
 ################################################################################
 
 use strict;
-use vars qw(
-  $VERSION
-);
-
-use diagnostics;
 use vars qw($module);
 
 use Fcntl;
 use vars qw($module);
 
 use Fcntl;
@@ -24,7 +19,11 @@ use Fcntl;
 #
 # Version check
 #
 #
 # 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'}
 
 ################################################################################
 #
 
 ################################################################################
 #
@@ -59,19 +58,6 @@ use constant LH_MASTER => 3;
 use base 'Exporter';
 @Lock::EXPORT = qw(LH_SHARED LH_EXCL LH_EXSH LH_MASTER);
 
 use base 'Exporter';
 @Lock::EXPORT = qw(LH_SHARED LH_EXCL LH_EXSH LH_MASTER);
 
-###############
-# !!!!!!!!!!!!!!!!!
-# remove the following later
-###############
-package Locked;
-use constant LH_SHARED => 0;
-use constant LH_EXCL   => 1;
-use constant LH_EXSH   => 2;
-use constant LH_MASTER => 3;
-
-use base 'Exporter';
-@Locked::EXPORT = qw(LH_SHARED LH_EXCL LH_EXSH LH_MASTER);
-
 # keep require happy
 1;
 
 # keep require happy
 1;
 
index 50103d2e5d12b468ea390a134a80cc8a5147cd2b..0400ec748a4f7b7e2a67cdc430e75b7997768be9 100644 (file)
@@ -4,8 +4,8 @@ package Template;
 #                                                                              #
 # File:        shared/Template.pm                                              #
 #                                                                              #
 #                                                                              #
 # File:        shared/Template.pm                                              #
 #                                                                              #
-# Authors:     André Malo       <nd@o3media.de>, 2001-07-01                    #
-#              Frank Schoenmann <fs@tower.de>,   2001-06-04                    #
+# Authors:     André Malo <nd@o3media.de>                                      #
+#              Frank Schönmann <fs@tower.de>                                   #
 #                                                                              #
 # Description: Handle XML based HTML-Templates                                 #
 #                                                                              #
 #                                                                              #
 # Description: Handle XML based HTML-Templates                                 #
 #                                                                              #
@@ -14,13 +14,9 @@ package Template;
 use strict;
 use vars qw(
   $xml_dom_used
 use strict;
 use vars qw(
   $xml_dom_used
-  $VERSION
 );
 
 );
 
-use Carp qw(
-  croak
-  confess
-);
+use Carp qw(croak);
 
 BEGIN {
   $xml_dom_used = eval q[
 
 BEGIN {
   $xml_dom_used = eval q[
@@ -34,7 +30,11 @@ BEGIN {
 #
 # Version check
 #
 #
 # 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 ####################################################################
 
 
 ### sub new ####################################################################
@@ -107,30 +107,13 @@ sub insert {
 #
 sub list {
   my $self = shift;
 #
 sub list {
   my $self = shift;
+  my $name = shift;
 
   croak "no template file specified"
     unless (defined $self -> {file});
 
 
   croak "no template file specified"
     unless (defined $self -> {file});
 
-  $self -> joinlist ('' => @_);
-}
-
-### sub joinlist ###############################################################
-#
-# fill in a complete list, using a scrap between the list elements
-#
-# Params: $join  - joining string (or stringref)
-#         $name  - name of the atomic list scrap
-#         $array - list of hashes (same strcuture like the hash used by 'scrap')
-#
-# Return: scalar reference - filled in list
-#
-sub joinlist {
-  my $self = shift;
-  my $join = shift;
-  $join = $$join if ref($join);
-  my $name = shift;
-
-  my $list = join $join => map { ${ $self -> scrap ($name, $_) } } @{ +shift };
+#  no warnings 'uninitialized';
+  my $list = join '' => map { ${ $self -> scrap ($name, $_) } } @{ +shift };
 
   # return
   \$list;
 
   # return
   \$list;
@@ -215,42 +198,6 @@ sub scrap {
   \$scrap;
 }
 
   \$scrap;
 }
 
-### printscrap () ##############################################################
-#
-# fill in a template scrap and print to STDOUT
-#
-# Params: $name    name of the scrap
-#         ...
-#         $no_nl   1 - remove newlines (\n)
-#                  0 - do no such thing
-#
-# Return: success code (boolean)
-#
-sub printscrap {
-  my $self = shift;
-
-  $self -> scrap2file (\*STDOUT, @_);
-}
-
-### scrap2file () ##############################################################
-#
-# fill in a template scrap and print to a file handle
-#
-# Params: $handle  filehandle
-#         $name    name of the scrap
-#         ...
-#         $no_nl   1 - remove newlines (\n)
-#                  0 - do no such thing
-#
-# Return: success code (boolean)
-#
-sub scrap2file {
-  my $self = shift;
-  my $handle = shift;
-
-  print $handle ${$self->scrap(@_)};
-}
-
 ### sub parse_file #############################################################
 #
 # read in and parse template file
 ### sub parse_file #############################################################
 #
 # read in and parse template file

patrick-canterino.de