richter     01/02/12 21:39:46

  Modified:    .        Changes.pod Embperl.pm EmbperlObject.pm INSTALL.pod
                        Makefile.PL README embpcgi.bat.templ
                        embpcgi.pl.templ embpcgi.test.pl.templ embperl.h
                        embpexec.bat.templ embpexec.pl.templ ep.h epchar.c
                        epcmd.c epdat.h epdbg.c epeval.c epio.c epmacro.h
                        epmain.c epnames.h eputil.c
               Embperl  Mail.pm Module.pm
               test/conf httpd.conf.src
  Log:
  - some cleanup's
  - 1.3.1 :-)
  
  Revision  Changes    Path
  1.154     +3 -1      embperl/Changes.pod
  
  Index: Changes.pod
  ===================================================================
  RCS file: /home/cvs/embperl/Changes.pod,v
  retrieving revision 1.153
  retrieving revision 1.154
  diff -u -r1.153 -r1.154
  --- Changes.pod       2001/02/09 09:46:31     1.153
  +++ Changes.pod       2001/02/13 05:39:08     1.154
  @@ -33,7 +33,9 @@
      - Added warning if @ISA is not correctly setup/corrupted.
      - Fixed a SIGSEGV that occurs when an reference to undef is returned
        from a [+ +] inside a URL.
  -    
  +   - Added warning to Makefile.PL, if File::Spec 0.82 isn't installed, which is
  +     required by EmbperlObject.
  +   - Fixed "use of undefined value" warning in make test      
   
   =head1 1.3.0 (RELEASE)   4 Dec. 2000
   
  
  
  
  1.142     +3 -3      embperl/Embperl.pm
  
  Index: Embperl.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl.pm,v
  retrieving revision 1.141
  retrieving revision 1.142
  diff -u -r1.141 -r1.142
  --- Embperl.pm        2001/02/07 10:00:53     1.141
  +++ Embperl.pm        2001/02/13 05:39:09     1.142
  @@ -1,7 +1,7 @@
   
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-2000 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: Embperl.pm,v 1.141 2001/02/07 10:00:53 richter Exp $
  +#   $Id: Embperl.pm,v 1.142 2001/02/13 05:39:09 richter Exp $
   #
   ###################################################################################
   
  @@ -81,7 +81,7 @@
   @ISA = qw(Exporter DynaLoader);
   
   
  -$VERSION = '1.3.1b1_dev';
  +$VERSION = '1.3.1';
   
   # HTML::Embperl cannot be bootstrapped in nonlazy mode except
   # under mod_perl, because its dependencies import symbols like ap_palloc
  
  
  
  1.42      +16 -3     embperl/EmbperlObject.pm
  
  Index: EmbperlObject.pm
  ===================================================================
  RCS file: /home/cvs/embperl/EmbperlObject.pm,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- EmbperlObject.pm  2001/02/07 08:20:43     1.41
  +++ EmbperlObject.pm  2001/02/13 05:39:10     1.42
  @@ -1,7 +1,7 @@
   
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-2000 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -10,7 +10,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: EmbperlObject.pm,v 1.41 2001/02/07 08:20:43 richter Exp $
  +#   $Id: EmbperlObject.pm,v 1.42 2001/02/13 05:39:10 richter Exp $
   #
   ###################################################################################
   
  @@ -54,7 +54,7 @@
   @ISA = qw(Exporter DynaLoader);
   
   
  -$VERSION = '1.3.1b1_dev';
  +$VERSION = '1.3.1';
   
   
   $volume = (File::Spec -> splitpath ($HTML::Embperl::cwd))[0] ;
  @@ -333,6 +333,19 @@
   
   
   =head1 DESCRIPTION
  +
  +I<HTML::EmbperlObject> allows you to build object-oriented (OO) websites using
  +HTML components which implement inheritance via subdirectories. This
  +enables elegant architectures and encourages code reuse. The use of
  +inheritance also enables a website-wide "look and feel" to be specified
  +in a single HTML file, which is then used as a template for every other
  +page on the site. This template can include other modules which can be
  +overridden in subdirectories; even the template itself can be
  +overridden. In a nutshell, I<EmbperlObject> makes
  +the design of large websites much more intuitive, allowing
  +object-oriented concepts to be utilised to the fullest while staying
  +within the "rapid application development" model of Perl and HTML.
  +
   
   I<HTML::EmbperlObject> is basicly a I<mod_perl> handler or could be invoked
   offline and helps you to
  
  
  
  1.17      +2 -2      embperl/INSTALL.pod
  
  Index: INSTALL.pod
  ===================================================================
  RCS file: /home/cvs/embperl/INSTALL.pod,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- INSTALL.pod       2001/02/07 08:20:45     1.16
  +++ INSTALL.pod       2001/02/13 05:39:11     1.17
  @@ -52,7 +52,7 @@
   
   =over 4
   
  -=item * File::Spec
  +=item * File::Spec 0.82 or higher
   
   =back
   
  @@ -172,7 +172,7 @@
   
   =over 4
   
  -=item * File::Spec
  +=item * File::Spec 0.82 or higher
   
   =back
   
  
  
  
  1.40      +8 -1      embperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/embperl/Makefile.PL,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- Makefile.PL       2001/02/09 09:46:31     1.39
  +++ Makefile.PL       2001/02/13 05:39:12     1.40
  @@ -775,6 +775,13 @@
               }
           }
   
  +    if (($FSVer = CheckModule ("File::Spec", "-> Required for EmbperlObject, make 
test will fail whithout File::Spec")) < 0.82)
  +        {
  +        print "-> EmbperlObject requires File::Spec 0.82 or higher, found $FSVer, 
please upgrade!\n" ;
  +        }
  +        
  +
  +
       $SessVer ||= 0 ;
   
       CheckModule ("CGI", "-> File Upload will not work without CGI.pm installed") ;
  @@ -901,7 +908,7 @@
       'realclean'    => { FILES => 'embpexec.pl embpexec.bat embpcgi.pl 
embpcgi.test.pl embpcgi.bat test/conf/config.pl' },
       'dist'         => { COMPRESS => 'gzip', SUFFIX => 'gz'},
       'dynamic_lib'  => $dynlib,
  -    'PREREQ_PM'    => { 'File::Spec' => 0 },
  +    'PREREQ_PM'    => { 'File::Spec' => '0.82' },
       'ABSTRACT'     => 'Embed Perl code in HTML documents',
       'AUTHOR'       => 'Gerald Richter <[EMAIL PROTECTED]>',
   
  
  
  
  1.24      +10 -10    embperl/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/embperl/README,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- README    2001/02/12 09:03:24     1.23
  +++ README    2001/02/13 05:39:13     1.24
  @@ -13,16 +13,16 @@
   OVERVIEW
   ========
   
  -Embperl gives you the power to embed Perl code in your HTML documents 
  -and the ability to build your Web site out of small reusable objects 
  -in a OO-style. You can also take advantage all available Perl modules, 
  -(including DBI for database access) use their functionality and easily 
  -include their output into your web pages.
  -
  -Embperl has several features especially useful for creating HTML, 
  -including dynamic tables, formfield-processing, escaping/unescaping, 
  -session handling, and more. 
  -
  +Embperl gives you the power to embed Perl code in your HTML documents
  +and the ability to build your Web site out of small reusable objects in
  +an object-oriented style. You can also take advantage of all the
  +usual Perl modules, (including DBI for database access) use their
  +functionality and easily include their output in your web pages.
  +
  +Embperl has several features which are especially useful for creating
  +HTML, including dynamic tables, form field processing, URL
  +escaping/unescaping, session handling, and more.
  +
   Embperl is a server-side tool, which means that it's browser-independent. 
   It can run in various ways: under mod_perl, as a CGI script, or offline.
   
  
  
  
  1.2       +3 -1      embperl/embpcgi.bat.templ
  
  Index: embpcgi.bat.templ
  ===================================================================
  RCS file: /home/cvs/embperl/embpcgi.bat.templ,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- embpcgi.bat.templ 2000/09/11 09:53:28     1.1
  +++ embpcgi.bat.templ 2001/02/13 05:39:14     1.2
  @@ -7,7 +7,7 @@
   #line 8
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -17,6 +17,8 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  +#   $Id: embpcgi.bat.templ,v 1.2 2001/02/13 05:39:14 richter Exp $
  +#
   ###################################################################################
   
   use HTML::Embperl;
  
  
  
  1.2       +3 -1      embperl/embpcgi.pl.templ
  
  Index: embpcgi.pl.templ
  ===================================================================
  RCS file: /home/cvs/embperl/embpcgi.pl.templ,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- embpcgi.pl.templ  2000/09/11 09:53:29     1.1
  +++ embpcgi.pl.templ  2001/02/13 05:39:14     1.2
  @@ -1,7 +1,7 @@
   #!/usr/bin/perl 
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -11,6 +11,8 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  +#   $Id: embpcgi.pl.templ,v 1.2 2001/02/13 05:39:14 richter Exp $
  +#
   ###################################################################################
   
   use HTML::Embperl;
  
  
  
  1.2       +3 -1      embperl/embpcgi.test.pl.templ
  
  Index: embpcgi.test.pl.templ
  ===================================================================
  RCS file: /home/cvs/embperl/embpcgi.test.pl.templ,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- embpcgi.test.pl.templ     2000/09/11 09:53:29     1.1
  +++ embpcgi.test.pl.templ     2001/02/13 05:39:15     1.2
  @@ -1,7 +1,7 @@
   #!/usr/bin/perl 
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -11,6 +11,8 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  +#   $Id: embpcgi.test.pl.templ,v 1.2 2001/02/13 05:39:15 richter Exp $
  +#
   ###################################################################################
   
   
  
  
  
  1.24      +3 -1      embperl/embperl.h
  
  Index: embperl.h
  ===================================================================
  RCS file: /home/cvs/embperl/embperl.h,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- embperl.h 2000/11/15 08:15:41     1.23
  +++ embperl.h 2001/02/13 05:39:16     1.24
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: embperl.h,v 1.24 2001/02/13 05:39:16 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.2       +4 -1      embperl/embpexec.bat.templ
  
  Index: embpexec.bat.templ
  ===================================================================
  RCS file: /home/cvs/embperl/embpexec.bat.templ,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- embpexec.bat.templ        2000/09/11 09:53:29     1.1
  +++ embpexec.bat.templ        2001/02/13 05:39:16     1.2
  @@ -7,7 +7,7 @@
   #line 8
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -17,6 +17,9 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  +#
  +#   $Id: embpexec.bat.templ,v 1.2 2001/02/13 05:39:16 richter Exp $
  +#
   ###################################################################################
   
   use HTML::Embperl;
  
  
  
  1.2       +3 -1      embperl/embpexec.pl.templ
  
  Index: embpexec.pl.templ
  ===================================================================
  RCS file: /home/cvs/embperl/embpexec.pl.templ,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- embpexec.pl.templ 2000/09/11 09:53:30     1.1
  +++ embpexec.pl.templ 2001/02/13 05:39:17     1.2
  @@ -1,7 +1,7 @@
   #!/usr/bin/perl 
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -11,6 +11,8 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  +#   $Id: embpexec.pl.templ,v 1.2 2001/02/13 05:39:17 richter Exp $
  +#
   ###################################################################################
   
   
  
  
  
  1.33      +3 -1      embperl/ep.h
  
  Index: ep.h
  ===================================================================
  RCS file: /home/cvs/embperl/ep.h,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- ep.h      2000/12/03 13:54:34     1.32
  +++ ep.h      2001/02/13 05:39:17     1.33
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#   
  +#   $Id: ep.h,v 1.33 2001/02/13 05:39:17 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.13      +3 -1      embperl/epchar.c
  
  Index: epchar.c
  ===================================================================
  RCS file: /home/cvs/embperl/epchar.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- epchar.c  2000/07/08 17:09:39     1.12
  +++ epchar.c  2001/02/13 05:39:18     1.13
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1998 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epchar.c,v 1.13 2001/02/13 05:39:18 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.40      +3 -1      embperl/epcmd.c
  
  Index: epcmd.c
  ===================================================================
  RCS file: /home/cvs/embperl/epcmd.c,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- epcmd.c   2000/11/15 08:15:41     1.39
  +++ epcmd.c   2001/02/13 05:39:19     1.40
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epcmd.c,v 1.40 2001/02/13 05:39:19 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.28      +3 -1      embperl/epdat.h
  
  Index: epdat.h
  ===================================================================
  RCS file: /home/cvs/embperl/epdat.h,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- epdat.h   2001/02/07 08:20:49     1.27
  +++ epdat.h   2001/02/13 05:39:20     1.28
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epdat.h,v 1.28 2001/02/13 05:39:20 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.4       +3 -1      embperl/epdbg.c
  
  Index: epdbg.c
  ===================================================================
  RCS file: /home/cvs/embperl/epdbg.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- epdbg.c   1999/11/02 08:32:49     1.3
  +++ epdbg.c   2001/02/13 05:39:21     1.4
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epdbg.c,v 1.4 2001/02/13 05:39:21 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.28      +3 -1      embperl/epeval.c
  
  Index: epeval.c
  ===================================================================
  RCS file: /home/cvs/embperl/epeval.c,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- epeval.c  2000/12/03 13:54:34     1.27
  +++ epeval.c  2001/02/13 05:39:21     1.28
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epeval.c,v 1.28 2001/02/13 05:39:21 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.17      +3 -1      embperl/epio.c
  
  Index: epio.c
  ===================================================================
  RCS file: /home/cvs/embperl/epio.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- epio.c    2000/09/12 12:49:49     1.16
  +++ epio.c    2001/02/13 05:39:22     1.17
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epio.c,v 1.17 2001/02/13 05:39:22 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.8       +3 -1      embperl/epmacro.h
  
  Index: epmacro.h
  ===================================================================
  RCS file: /home/cvs/embperl/epmacro.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- epmacro.h 2000/11/07 11:28:20     1.7
  +++ epmacro.h 2001/02/13 05:39:22     1.8
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epmacro.h,v 1.8 2001/02/13 05:39:22 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.94      +3 -1      embperl/epmain.c
  
  Index: epmain.c
  ===================================================================
  RCS file: /home/cvs/embperl/epmain.c,v
  retrieving revision 1.93
  retrieving revision 1.94
  diff -u -r1.93 -r1.94
  --- epmain.c  2001/02/12 09:03:26     1.93
  +++ epmain.c  2001/02/13 05:39:23     1.94
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epmain.c,v 1.94 2001/02/13 05:39:23 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.24      +3 -1      embperl/epnames.h
  
  Index: epnames.h
  ===================================================================
  RCS file: /home/cvs/embperl/epnames.h,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- epnames.h 2000/12/03 13:54:34     1.23
  +++ epnames.h 2001/02/13 05:39:24     1.24
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#
  +#   $Id: epnames.h,v 1.24 2001/02/13 05:39:24 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.17      +3 -1      embperl/eputil.c
  
  Index: eputil.c
  ===================================================================
  RCS file: /home/cvs/embperl/eputil.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- eputil.c  2000/11/15 08:15:41     1.16
  +++ eputil.c  2001/02/13 05:39:25     1.17
  @@ -1,6 +1,6 @@
   
/*###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-1999 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,6 +9,8 @@
   #   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  +#   
  +#   $Id: eputil.c,v 1.17 2001/02/13 05:39:25 richter Exp $
   #
   
###################################################################################*/
   
  
  
  
  1.31      +2 -2      embperl/Embperl/Mail.pm
  
  Index: Mail.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl/Mail.pm,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- Mail.pm   2001/01/29 10:44:02     1.30
  +++ Mail.pm   2001/02/13 05:39:40     1.31
  @@ -9,7 +9,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: Mail.pm,v 1.30 2001/01/29 10:44:02 richter Exp $
  +#   $Id: Mail.pm,v 1.31 2001/02/13 05:39:40 richter Exp $
   #
   ###################################################################################
   
  @@ -32,7 +32,7 @@
   @ISA = qw(HTML::Embperl);
   
   
  -$VERSION = '1.3.0';
  +$VERSION = '1.3.1';
   
   
   
  
  
  
  1.29      +2 -17     embperl/Embperl/Module.pm
  
  Index: Module.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl/Module.pm,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- Module.pm 2000/05/02 06:43:27     1.28
  +++ Module.pm 2001/02/13 05:39:41     1.29
  @@ -1,6 +1,6 @@
   ###################################################################################
   #
  -#   Embperl - Copyright (c) 1997-2000 Gerald Richter / ECOS
  +#   Embperl - Copyright (c) 1997-2001 Gerald Richter / ECOS
   #
   #   You may distribute under the terms of either the GNU General Public
   #   License or the Artistic License, as specified in the Perl README file.
  @@ -9,25 +9,10 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: Module.pm,v 1.28 2000/05/02 06:43:27 richter Exp $
  +#   $Id: Module.pm,v 1.29 2001/02/13 05:39:41 richter Exp $
   #
   ###################################################################################
   
  -
  -###################################################################################
  -#
  -#   Embperl - Copyright (c) 1997-2000 Gerald Richter / ECOS
  -#
  -#   You may distribute under the terms of either the GNU General Public
  -#   License or the Artistic License, as specified in the Perl README file.
  -#
  -#   THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  -#   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  -#   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  -#
  -#   $Id: Module.pm,v 1.28 2000/05/02 06:43:27 richter Exp $
  -#
  -###################################################################################
   
   
   package HTML::Embperl::Module ;
  
  
  
  1.34      +1 -1      embperl/test/conf/httpd.conf.src
  
  Index: httpd.conf.src
  ===================================================================
  RCS file: /home/cvs/embperl/test/conf/httpd.conf.src,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- httpd.conf.src    2001/02/07 08:21:12     1.33
  +++ httpd.conf.src    2001/02/13 05:39:44     1.34
  @@ -238,7 +238,7 @@
   
   AddType text/html .ehtml
   
  -#<FilesMatch \".*\.ehtml$\">
  +#<FilesMatch \".*\.ehtml\$\">
   #SetHandler perl-script
   #PerlHandler HTML::Embperl
   #Options ExecCGI
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to