X-Git-Url: https://git.p6c8.net/selfforum.git/blobdiff_plain/e4453d784ec8903820ff2e03c29545b13060f060..69cc2ea1cf06c310ec4079e301e360f78802c34b:/selfforum-cgi/shared/Template.pm diff --git a/selfforum-cgi/shared/Template.pm b/selfforum-cgi/shared/Template.pm index 50103d2..5dc6322 100644 --- a/selfforum-cgi/shared/Template.pm +++ b/selfforum-cgi/shared/Template.pm @@ -4,8 +4,8 @@ package Template; # # # File: shared/Template.pm # # # -# Authors: André Malo , 2001-07-01 # -# Frank Schoenmann , 2001-06-04 # +# Authors: André Malo # +# Frank Schönmann # # # # Description: Handle XML based HTML-Templates # # # @@ -14,13 +14,9 @@ package Template; use strict; use vars qw( $xml_dom_used - $VERSION ); -use Carp qw( - croak - confess -); +use Carp qw(croak); BEGIN { $xml_dom_used = eval q[ @@ -34,10 +30,14 @@ BEGIN { # # 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 #################################################################### +### new () ##################################################################### # # constructor # @@ -56,7 +56,7 @@ sub new { $self; } -### sub file ################################################################### +### file () #################################################################### # # assign new template file to object # parse the template file @@ -77,7 +77,7 @@ sub file { $old; } -### sub insert ################################################################# +### insert () ################################################################## # # return the placeholder surrounded by meta delimiters # @@ -96,7 +96,7 @@ sub insert { $self -> {metaon} . $name . $self -> {metaoff}; } -### sub list ################################################################### +### list () #################################################################### # # fill in a complete list # @@ -114,7 +114,7 @@ sub list { $self -> joinlist ('' => @_); } -### sub joinlist ############################################################### +### joinlist () ################################################################ # # fill in a complete list, using a scrap between the list elements # @@ -136,7 +136,7 @@ sub joinlist { \$list; } -### sub scrap ################################################################## +### scrap () ################################################################### # # fill in a template scrap # @@ -251,7 +251,7 @@ sub scrap2file { print $handle ${$self->scrap(@_)}; } -### sub parse_file ############################################################# +### parse_file () ############################################################## # # read in and parse template file # @@ -351,7 +351,7 @@ sub parse_file { return; # anything failed (??) } -### sub parse_if ############################################################### +### parse_if () ################################################################ # # parse conditional blocks #