pf wrote:

> Hi All,
>
> HTML::EmbperlObject is a really *great* tool. To use it properly, i have
> some questions :
>
>     <Location /blabla>
>       PerlSetEnv    EMBPERL_OBJECT_BASE _base.epl
>       PerlSetEnv   EMBPERL_FILESMATCH  "\.epl$"
>       SetHandler    perl-script
>       PerlHandler   HTML::EmbperlObject
>     </location>
>
> work fine, of course.
>
> But what i would like to do is to mix cgi, mod_perl, embperl and
> EmbperlObject files in the same directory structure.
>
> for example to have *.opl for EmbperlObject, *.epl for embperl, *fpl for
> mod_perl and standard *.cgi.
>
> Why ? Because sometimes, i have sometink like this :
> _base.epl, which point to :
> _head.html (static file)
> my_frame.cgi (*not* a Embperl file !)
> _foot.fpl (mod_perl file)
>
>

<Location /blabla>
   <FilesMatch "*\.opl$">
      PerlSetEnv    EMBPERL_OBJECT_BASE _base.epl
      SetHandler    perl-script
      PerlHandler   HTML::EmbperlObject
   </FilesMatch>
   <FilesMatch "*\.epl>
      SetHandler    perl-script
      PerlHandler   HTML::Embperl
   </FilesMatch>
      etc. etc.
--
___cliff [EMAIL PROTECTED]



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

Reply via email to