You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl-cvs@perl.apache.org by ri...@apache.org on 2001/11/16 12:55:33 UTC

cvs commit: embperl/Embperl/Recipe LibXSLT.pm XSLT.pm XalanXSLT.pm

richter     01/11/16 03:55:32

  Modified:    .        Tag: Embperl2c MANIFEST MANIFEST.2 test.pl
  Added:       Embperl/Recipe Tag: Embperl2c LibXSLT.pm XSLT.pm
                        XalanXSLT.pm
  Log:
  Embperl 2 - more recipes
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.50.4.35 +8 -0      embperl/MANIFEST
  
  Index: MANIFEST
  ===================================================================
  RCS file: /home/cvs/embperl/MANIFEST,v
  retrieving revision 1.50.4.34
  retrieving revision 1.50.4.35
  diff -u -r1.50.4.34 -r1.50.4.35
  --- MANIFEST	2001/11/14 09:54:21	1.50.4.34
  +++ MANIFEST	2001/11/16 11:55:32	1.50.4.35
  @@ -16,6 +16,14 @@
   Embperl/Syntax/Mail.pm
   Embperl/Syntax/RTF.pm
   Embperl/Syntax/POD.pm
  +Embperl/Recipe.pm
  +Embperl/Recipe/Embperl.pm
  +Embperl/Recipe/EmbperlXSLT.pm
  +Embperl/Recipe/EmbperlLibXSLT.pm
  +Embperl/Recipe/EmbperlXalanXSLT.pm
  +Embperl/Recipe/XSLT.pm
  +Embperl/Recipe/LibXSLT.pm
  +Embperl/Recipe/XalanXSLT.pm
   README.v2
   driver/eplibxslt.MAKEPL
   driver/eplibxslt.c
  
  
  
  1.1.2.22  +8 -0      embperl/Attic/MANIFEST.2
  
  Index: MANIFEST.2
  ===================================================================
  RCS file: /home/cvs/embperl/Attic/MANIFEST.2,v
  retrieving revision 1.1.2.21
  retrieving revision 1.1.2.22
  diff -u -r1.1.2.21 -r1.1.2.22
  --- MANIFEST.2	2001/11/14 09:54:21	1.1.2.21
  +++ MANIFEST.2	2001/11/16 11:55:32	1.1.2.22
  @@ -16,6 +16,14 @@
   Embperl/Syntax/Mail.pm
   Embperl/Syntax/RTF.pm
   Embperl/Syntax/POD.pm
  +Embperl/Recipe.pm
  +Embperl/Recipe/Embperl.pm
  +Embperl/Recipe/EmbperlXSLT.pm
  +Embperl/Recipe/EmbperlLibXSLT.pm
  +Embperl/Recipe/EmbperlXalanXSLT.pm
  +Embperl/Recipe/XSLT.pm
  +Embperl/Recipe/LibXSLT.pm
  +Embperl/Recipe/XalanXSLT.pm
   README.v2
   driver/eplibxslt.MAKEPL
   driver/eplibxslt.c
  
  
  
  1.70.4.94 +58 -1     embperl/test.pl
  
  Index: test.pl
  ===================================================================
  RCS file: /home/cvs/embperl/test.pl,v
  retrieving revision 1.70.4.93
  retrieving revision 1.70.4.94
  diff -u -r1.70.4.93 -r1.70.4.94
  --- test.pl	2001/11/16 11:29:02	1.70.4.93
  +++ test.pl	2001/11/16 11:55:32	1.70.4.94
  @@ -11,7 +11,7 @@
   #   IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
   #   WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
   #
  -#   $Id: test.pl,v 1.70.4.93 2001/11/16 11:29:02 richter Exp $
  +#   $Id: test.pl,v 1.70.4.94 2001/11/16 11:55:32 richter Exp $
   #
   ###################################################################################
   
  @@ -736,7 +736,7 @@
           'xsltstylesheet'     => 'xml/pod.xsl',
           'offline'    => 1,
           'condition'  => '$LIBXSLTVERSION', 
  -        'msg'        => ' libxslt',
  +        'msg'        => ' embperl -> libxslt',
           },
       'xml/pod.xml' => { 
           'version'    => 2,
  @@ -745,8 +745,63 @@
           'offline'    => 1,
           'condition'  => '$XALANPATH', 
           'cmpext'     => '.xalan',
  +        'msg'        => ' embperl -> xalan',
  +        },
  +    'xml/pod.xml' => { 
  +        'version'    => 2,
  +        'recipe'     => 'EmbperlXSLT',
  +        'xsltstylesheet'     => 'xml/pod.xsl',
  +        'xsltproc'   => 'libxslt',
  +        'offline'    => 1,
  +        'condition'  => '$LIBXSLTVERSION', 
  +        'msg'        => ' embperl -> xslt (libxslt)',
  +        },
  +    'xml/pod.xml' => { 
  +        'version'    => 2,
  +        'recipe'     => 'EmbperlXSLT',
  +        'xsltstylesheet'     => 'xml/pod.xsl',
  +        'offline'    => 1,
  +        'xsltproc'   => 'xalan',
  +        'condition'  => '$XALANPATH', 
  +        'cmpext'     => '.xalan',
  +        'msg'        => ' embperl -> xslt (xalan)',
  +        },
  +    'xml/pod.xml' => { 
  +        'version'    => 2,
  +        'recipe'     => 'LibXSLT',
  +        'xsltstylesheet'     => 'xml/pod.xsl',
  +        'offline'    => 1,
  +        'condition'  => '$LIBXSLTVERSION', 
  +        'msg'        => ' libxslt',
  +        },
  +    'xml/pod.xml' => { 
  +        'version'    => 2,
  +        'recipe'     => 'XalanXSLT',
  +        'xsltstylesheet'     => 'xml/pod.xsl',
  +        'offline'    => 1,
  +        'condition'  => '$XALANPATH', 
  +        'cmpext'     => '.xalan',
           'msg'        => ' xalan',
           },
  +    'xml/pod.xml' => { 
  +        'version'    => 2,
  +        'recipe'     => 'XSLT',
  +        'xsltstylesheet'     => 'xml/pod.xsl',
  +        'xsltproc'   => 'libxslt',
  +        'offline'    => 1,
  +        'condition'  => '$LIBXSLTVERSION', 
  +        'msg'        => ' xslt (libxslt)',
  +        },
  +    'xml/pod.xml' => { 
  +        'version'    => 2,
  +        'recipe'     => 'XSLT',
  +        'xsltstylesheet'     => 'xml/pod.xsl',
  +        'offline'    => 1,
  +        'xsltproc'   => 'xalan',
  +        'condition'  => '$XALANPATH', 
  +        'cmpext'     => '.xalan',
  +        'msg'        => ' xslt (xalan)',
  +        },
       'pod/pod.asc' => { 
           'version'    => 2,
           'syntax'     => 'POD',
  @@ -1661,6 +1716,8 @@
                   $ENV{EMBPERL_RECIPE} = $test -> {recipe} if (defined ($test -> {recipe})) ;
   	        delete $ENV{EMBPERL_XSLTSTYLESHEET} ;
                   $ENV{EMBPERL_XSLTSTYLESHEET} = $test -> {xsltstylesheet} if (defined ($test -> {xsltstylesheet})) ;
  +	        delete $ENV{EMBPERL_XSLTPROC} ;
  +                $ENV{EMBPERL_XSLTPROC} = $test -> {xsltproc} if (defined ($test -> {xsltproc})) ;
   	        delete $ENV{EMBPERL_COMPARTMENT} if (defined ($ENV{EMBPERL_COMPARTMENT})) ;
   	        $ENV{EMBPERL_COMPARTMENT} = $test -> {compartment} if (defined ($test -> {compartment})) ;
   	        delete $ENV{EMBPERL_PACKAGE}  if (defined (delete $ENV{EMBPERL_PACKAGE})) ;
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +44 -0     embperl/Embperl/Recipe/Attic/LibXSLT.pm
  
  
  
  
  1.1.2.1   +122 -0    embperl/Embperl/Recipe/Attic/XSLT.pm
  
  
  
  
  1.1.2.1   +44 -0     embperl/Embperl/Recipe/Attic/XalanXSLT.pm
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-cvs-help@perl.apache.org