richter     00/12/21 22:23:15

  Modified:    .        Tag: Embperl2c Changes.pod Embperl.pm README
                        README.v2
  Log:
  Embperl 2.0b1
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.129.4.7 +18 -14    embperl/Changes.pod
  
  Index: Changes.pod
  ===================================================================
  RCS file: /home/cvs/embperl/Changes.pod,v
  retrieving revision 1.129.4.6
  retrieving revision 1.129.4.7
  diff -u -r1.129.4.6 -r1.129.4.7
  --- Changes.pod       2000/11/15 08:33:02     1.129.4.6
  +++ Changes.pod       2000/12/22 06:23:12     1.129.4.7
  @@ -1,15 +1,7 @@
   =pod
   
  -=head1 2.0b1_dev -- That's what currently under developement
  +=head1 2.0b1 (BETA)  22. Dec 2000
   
  -Last Update: <$localtime$> (MET)
  -
  -NOTE: This version is only available via L<"CVS"|CVS/"INTRO">
  -You need to use the CVS tag "Embperl2c" to check it out.
  -
  -
  -   - Output is 8Bit clean. Now you can output strings that contains
  -     binary zeros from Embperl.
      - Syntax of Embperl is now defined in module HTML::Embperl::Syntax
      - Processing of Embperl is now divided in smaller steps:
           1 reading the source
  @@ -18,7 +10,7 @@
           4 executing
           5 outputing
        Since steps 1-3 has only to take place for the first time a file
  -     is processed, Embperl is about 25-50% faster the Embperl 1.x.
  +     is processed, Embperl is about 50-100% faster the Embperl 1.x.
        (Embperl 1.x has also precompiled the Perl code, but Embperl
        goes much further and stores also a precompiled structure of
        the document)
  @@ -45,12 +37,24 @@
        controls the caching. They can be either given as configuration
        directives in httpd.conf, as parameters to Execute or as
        Perl vars/subs inside a [! !] of the page itself.
  -
  +   - [+ +] blocks must now contain a valid Perl expression. Embperl 1.x
  +     allows you to put multiple statements into such a block. For performance
  +     reasons this is not possible anymore. Also the expression must _not_
  +     terminated with a semikolon. To let old code work, just wrap it into a do
  +     e.g. [+ do { my $a = $b + 5 ; $a } +]
  +
  +=head1 1.3.0 (RELEASE)   4 Dec. 2000
  +
  +   - Corrected a wrong test, that let make test fail. Spotted by Eddie Lau.
  +   - Added a Line Feed at the end of epnames.h, which has caused some problems
  +     with on old SunOS compiler. Spotted by Roman Maeder.
  +   - Fixed a problem that Perl generated an error when $req_rec and [$ var $] was
  +     used. Spotted by Michael Stevens.
   
  -=head1 1.3b7_dev 
  +=head1 1.3b7 (BETA)   15. Nov 2000
   
  -   - Fixed problem that call to close triggers error in Session.pm when using 
Store::File.
  -     Spotted by Alvar Freude.
  +   - Fixed problem that the call to close triggers error in Session.pm when using 
  +     Store::File. Spotted by Alvar Freude.
      - Fixed problem that GetSession doesn't return a value for new session.
        Spotted by Angus Lees.
      - Added new function SetSessionCookie, which can be used to set the session 
cookie
  
  
  
  1.118.4.22 +2 -2      embperl/Embperl.pm
  
  Index: Embperl.pm
  ===================================================================
  RCS file: /home/cvs/embperl/Embperl.pm,v
  retrieving revision 1.118.4.21
  retrieving revision 1.118.4.22
  diff -u -r1.118.4.21 -r1.118.4.22
  --- Embperl.pm        2000/12/21 07:41:15     1.118.4.21
  +++ Embperl.pm        2000/12/22 06:23:12     1.118.4.22
  @@ -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.118.4.21 2000/12/21 07:41:15 richter Exp $
  +#   $Id: Embperl.pm,v 1.118.4.22 2000/12/22 06:23:12 richter Exp $
   #
   ###################################################################################
   
  @@ -86,7 +86,7 @@
   
   
   ##ep2##
  -$VERSION = '2.0a19' ;
  +$VERSION = '2.0b1' ;
   ##/ep2##
   ##ep1##$VERSION = '1.3.0';
   
  
  
  
  1.19.6.4  +6 -3      embperl/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/embperl/README,v
  retrieving revision 1.19.6.3
  retrieving revision 1.19.6.4
  diff -u -r1.19.6.3 -r1.19.6.4
  --- README    2000/12/20 05:27:38     1.19.6.3
  +++ README    2000/12/22 06:23:13     1.19.6.4
  @@ -1,6 +1,6 @@
   HTML::Embperl - Embed Perl in Your HTML Documents
   
  -Copyright (c) 1997-2000 Gerald Richter / ECOS
  +Copyright (c) 1997-2000 Gerald Richter / ECOS GmbH
   
   You may distribute under the terms of either the GNU General Public 
   License or the Artistic License, as specified in the Perl README file.
  @@ -13,8 +13,11 @@
   ### !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! 
   ###
   ###
  -### This is an ALPHA release of Embperl 2.0, before installing
  -### please read the README.v2
  +### This is the first BETA release of Embperl 2.0, before installing
  +### please read the README.v2. Documentation is not yet updated to
  +### reflect the changes in 2.0, everything that has changed is
  +### documented in README.v2. Since this is the first beta you
  +### shouldn't use it in a production evnironment!
   ###
   ###
   ### !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! 
  
  
  
  1.1.4.5   +24 -0     embperl/Attic/README.v2
  
  Index: README.v2
  ===================================================================
  RCS file: /home/cvs/embperl/Attic/README.v2,v
  retrieving revision 1.1.4.4
  retrieving revision 1.1.4.5
  diff -u -r1.1.4.4 -r1.1.4.5
  --- README.v2 2000/12/20 05:27:38     1.1.4.4
  +++ README.v2 2000/12/22 06:23:13     1.1.4.5
  @@ -1,3 +1,27 @@
  +HTML::Embperl - Embed Perl in Your HTML Documents
  +
  +Copyright (c) 1997-2000 Gerald Richter / ECOS GmbH
  +
  +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.
  +
  +
  +### !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! 
  +###
  +###
  +### This is the first BETA release of Embperl 2.0, before installing
  +### please read the README.v2. Documentation is not yet updated to
  +### reflect the changes in 2.0, everything that has changed is
  +### documented in README.v2. Since this is the first beta you
  +### shouldn't use it in a production evnironment!
  +###
  +###
  +### !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! IMPORTANT !! 
  +
   
   Hints for using Embperl 2.x
   ---------------------------
  
  
  

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

Reply via email to