Re: difference between running offline mode and mod_perl?

2002-09-03 Thread Mark Lambrecht
Exactly ! Thanks, I had to set the permission of my home directory (the directory above ~/local/lib/perl) to 755 (executable by the apache server). Thanks again for the help. Best, Mark --- Gavin Carr <[EMAIL PROTECTED]> wrote: > On Mon, Sep 02, 2002 at 06:52:16AM -0700, Mark > Lambrecht wrote: >

Re: (Emb)perl & JavaScript

2002-09-03 Thread Gerald Richter - ecos gmbh
Hi, > > I'd like to have a (emb)perl library that would hide the JavaScript > ugliness behind couple of simple Perl calls, but I can't find anything > interesting. Ideally it would work in the Embperl::Form::Validate way, > but offered more advanced stuff like (database) table edit widget, > int

Re: ANNOUNCE: ewok - embperl-based content management system

2002-09-03 Thread Gerald Richter - ecos gmbh
Hi, > > The first public (beta) release of ewok, a web content management system > written in Embperl, is now available under the GPL at: > > http://www.openfusion.com.au/labs/ewok/ > Great news! As soon as I get a little time I put a link on perl.apache.org/embperl Gerald --

Re: ANNOUNCE: ewok - embperl-based content management system

2002-09-03 Thread Kaare Rasmussen
Hi > Great news! It does look very interesting :-) > As soon as I get a little time I put a link on perl.apache.org/embperl Maybe you could correct this page as well: http://perl.apache.org/embperl/db/sites/sites.htm There's very little difference between the two entries called Internationa

Re: (Emb)perl & JavaScript

2002-09-03 Thread Kaare Rasmussen
Hi > > but offered more advanced stuff like (database) table edit widget, > > inteligent date widget, menu tree widget etc. Have anybody heard about > > such thing? If not would there be any person interested in using and/or > > creating it? I need a database table edit widget - or something clo

MVC and plugging into the application

2002-09-03 Thread Kaare Rasmussen
Hi To get things started, it would be nice to have examples for the more advanced Embperl features like - How do I use Embperl to develop a MVC application - How and why do I plug into the application object - How do I use recipes and so on. Do these examples exist somewhere? -- Kaare Rasmus

Re: Embperl site (was: ANNOUNCE: ewok - embperl-based content management system)

2002-09-03 Thread Gerald Richter
> > Maybe you could correct this page as well: > > http://perl.apache.org/embperl/db/sites/sites.htm > > There's very little difference between the two entries called > > International Conference and Research Center for Computer Science (IBFI) > Schloss Dagstuhl > Yes, I know, that's why it's tit

Re: MVC and plugging into the application

2002-09-03 Thread Gerald Richter
Hi > > To get things started, it would be nice to have examples for the more > advanced Embperl features like > > - How do I use Embperl to develop a MVC application > - How and why do I plug into the application object > - How do I use recipes > > and so on. Do these examples exist somewhere? >

Re: problem using Apache::Session

2002-09-03 Thread Michael Boudreau
On Wednesday, August 28, 2002, at 05:41 PM, Angus Lees wrote: > At Wed, 28 Aug 2002 10:04:43 -0500, Michael Boudreau wrote: >> [23078]SES: Embperl Session management DISABLED beause of following >> error: >> Can't locate Apache/SessionX.pm in @INC (@INC contains: > >> I'm using perl 5.6.0, Em

Fwd: problem using Apache::Session

2002-09-03 Thread Michael Boudreau
OK, I have forgotten to do exactly what I tell other people--don't rely on old printouts, but read the most current docs on the web. *sigh* Mea culpa. > From: Michael Boudreau <[EMAIL PROTECTED]> > Date: Tue Sep 03, 2002 01:09:42 PM US/Central > To: [EMAIL PROTECTED], Angus Lees <[EMAIL PRO

Re: problem using Apache::Session

2002-09-03 Thread Gerald Richter
> OK, I have forgotten to do exactly what I tell other people--don't rely on > old printouts, but read the most current docs on the web. > If you are searching for a Perl module, just go to http://search.cpan.org and you will find it... Gerald -

using CGI within Embperl

2002-09-03 Thread Mark Dedlow
I'm want to drop some existing code that uses CGI.pm into Embperl, but Embperl grabs POST'ed data, so CGI doesn't have it. By changing my 'new CGI()' statements to 'new CGI(\%fdat);', my existing CGI-based code seems to work as expected. Is this the way other folks approach the issue, or is ther

Re: using CGI within Embperl

2002-09-03 Thread Gavin Carr
Try adding 256 to your EMBPERL_OPTIONS: optDisableFormData = 256 This option disables the setup of %fdat and @ffld. Embperl will not do anything with the posted form data. Set this when using Execute from your perl script and you have