Re: embperl hosting

2002-12-08 Thread Ilia Lobsanov
I have forwarded your request to someone who may have something for you. ilia. On 08 Dec 2002 14:33:12 -0600 Carlos Kassab <[EMAIL PROTECTED]> wrote: > Hi: > > Do you know where to get embperl hosting on the internet?. > > > Thank you in advance for your help > > > Carlos Kassab > > > >

Re: Embperl::Object 2.0b9 offline

2002-11-14 Thread Ilia Lobsanov
that doesn't help. ilia. On Tue, Nov 12, 2002 at 07:26:09PM +0100, Gerald Richter wrote: > > > > make test doesn't get pass test#199 > > > > this is another issue and related to an update of libxslt > > > this is what i get when i run the code snippet in question: > > > > ERR: 404: : Not fo

Re: Embperl::Form::Validate bug

2002-11-11 Thread Ilia Lobsanov
Gerald, the JS code for Radio would go something like this: for ( var i = 0; i < radio_element.length; i ++ ) { if ( radio_element[i].checked ) return true; } the JS code for Select would go something like this: if ( select_element.selectedIndex != 0 ) return true; ilia. On Wed, Oct 16, 20

Embperl::Object 2.0b9 offline

2002-11-11 Thread Ilia Lobsanov
I can't get Embperl::Object 2.0b9 to work in offline mode. This works for the old HTML::EmbperlObject : use HTML::EmbperlObject; my $path = '/htdocs'; my $h = { path => $path, object_addpath => $path, object_base => 'base.epl', inputfile => "${path}/.index.epl", outputfile => "${path}

embperl2 on freebsd compile failure

2002-11-10 Thread Ilia Lobsanov
/home/jbb/local/bin/perl -I/home/jbb/local/lib/perl5/5.6.1/i386-freebsd -I/home/jbb/local/lib/perl5/5.6.1 /home/jbb/local/lib/perl5/5.6.1/ExtUtils/xsubpp -typemap /home/jbb/local/lib/perl5/5.6.1/ExtUtils/typemap -typemap typemap xs/Embperl/App/App.xs > xs/Embperl/App/App.xsc && mv xs/Embperl/App/A

embperl 2 subs bug

2002-11-01 Thread Ilia Lobsanov
I'm attaching a file which demonstrates a bug in Embperl 2.0b8 - 2.0b9-dev3 When run via embpexec.pl, the html output contains '>' at the end, which shouldn't be there. ilia. [- %subjects = ( "Var1" => 'foo', "Var2" => 'bar'); -] [$ sub generate_subject_options $] [$ foreach $name (

Re: Embperl 2.0b8 and HTML::Embperl 1.3.4 coexistence

2002-10-21 Thread Ilia Lobsanov
Yet more info: segfault happens only with "EMBPERL_SESSION_MODE 2" and only with that page I attached. "EMBPERL_SESSION_MODE 1" works. ilia. On Sun, Oct 20, 2002 at 12:45:03AM -0400, Ilia Lobsanov wrote: > More info about the segfault. Coexistence is not the problem.

Re: Segafult with session id inside url (was: Embperl 2.0b8 and HTML::Embperl 1.3.4 coexistence)

2002-10-20 Thread Ilia Lobsanov
Same problem using the new Embperl2. Running apache with -X, I get segfault. So i recompile with debug and make install gives me: cc -c -I/usr/include/apache -I/usr/include/apache/regex -I/usr/include/apache/os/unix -I/usr/include/libxml2 -I/usr/include/libxml2 -I/usr/local/src/Embperl-2.0b9_dev

Re: Segafult with session id inside url (was: Embperl 2.0b8 and HTML::Embperl 1.3.4 coexistence)

2002-10-20 Thread Ilia Lobsanov
e_child_status () #40 0x0805f1f6 in ap_update_child_status () #41 0x0805fb6d in main () #42 0x401823c1 in __libc_start_main () from /lib/libc.so.6 On Sun, Oct 20, 2002 at 01:03:51PM -0400, Ilia Lobsanov wrote: > Same problem using the new Embperl2. > Running apache with -X, I get segfault. &

Embperl 2.0b8 and HTML::Embperl 1.3.4 coexistence

2002-10-20 Thread Ilia Lobsanov
I'm trying to get Embperl 2.0b8 and HTML::Embperl 1.3.4 to co-exist. First I got Embperl 2.0b8 working alone with apache 1.3.27, mod_perl 1.27, perl 5.6.1, Apache::SessionX configured with MySQL. Then I installed HTML::Embperl 1.3.4 and the trouble started. I run apache with -X and it segfaults

Re: Embperl 2.0b8 and HTML::Embperl 1.3.4 coexistence

2002-10-20 Thread Ilia Lobsanov
More info about the segfault. Coexistence is not the problem. The problem is the file I'm attaching. Apache segfaults when loading this file. ilia. On Sat, Oct 19, 2002 at 10:38:12PM -0400, Ilia Lobsanov wrote: > I'm trying to get Embperl 2.0b8 and HTML::Embperl 1.3.4 to co-exist.

Re: DBIx::Recordset 0.24 issues

2002-10-18 Thread Ilia Lobsanov
On Fri, Oct 18, 2002 at 08:50:48PM +0200, Gerald Richter wrote: > > 3. Is it possible to get count of total records returned when using > > PrevNextForm with $max > > > > Set $DBIx::Recordset::FetchsizeWarn = 0 and you will get the total number of > records with scalar(@set), if your database su

DBIx::Recordset 0.24 issues

2002-10-18 Thread Ilia Lobsanov
1. There seems to be a bug in DBIx::Recordset PrevNextForm. When specifying the -goto parameter, the Goto button is returned even if there are no (more) results. 2. Is it possible to put the PrevNextForm before iterating $set->Next I tried to do it, but the first record would get lost. 3. Is it p

Re: disable loading embperl_object_base

2002-10-18 Thread Ilia Lobsanov
On Fri, Oct 18, 2002 at 12:39:58PM +0200, Leideck, Wolfgang wrote: > Hello. > In my website environment i will display the content > of some files outside the documentroot (for example > logfiles) in a new browser window without the layout > defined in the embperl object base (base.epl). > How coul

Embperl::Form::Validate bug

2002-10-15 Thread Ilia Lobsanov
there seems to be a bug in the way Embperl::Form::Validate generates the client-side javascript code for the radio inputs. The JS code is using "value" property, which is not accurate for a Radio object. ilia. - To unsubscribe,

Embperl2.0b8 and Log4perl

2002-10-02 Thread Ilia Lobsanov
I'm using Perl 5.8, mod_perl 1.27, apache 1.3.26, Embperl 2.0b8 I'm trying to export &get_logger in startup.pl ala: use Log::Log4perl qw(get_logger); use Exporter; our @ISA = qw(Exporter); our @EXPORT : unique = qw(&get_logger); I want to access &get_logger in a

Re: make test error

2002-10-01 Thread Ilia Lobsanov
On October 1, 2002 06:26, Andre Landwehr wrote: > On Mon, Sep 30, 2002 at 07:04:59PM -0400, Ilia Lobsanov wrote: > > I did make install anyway. Now `apachectl configtest` gives segmentation > > fault. The culprit is "PerlModule Embperl" > > I finally decided not t

make test error

2002-09-30 Thread Ilia Lobsanov
I'm having the same problem as Andre Landwehr trying to get Embperl2.0b8 to work on Debian testing. - Apache: 1.3.26 - mod_perl: 1.26 - libxml 2.4.24 - libxslt 1.0.18 - Embperl 2.0b8 - Apache::Session 1.54 - Digest::MD5 2.13 Compilation of Embperl is successfull, but make test fails with #199 xml

EmbperlObject interface to mod_mp3

2001-10-23 Thread Ilia Lobsanov
Introducing a simple interface to mod_mp3 written using EmbperlObject that I have tentatively called Empache (ala the php equivalent Ampache). Example: http://24.43.237.74/mp3/ Download backend: http://24.43.237.74/empache.tar.gz Regards, Ilia Lobsanov. Nurey Networks Inc. http://www.nurey.net

Re: Embperl Webhosting

2001-09-13 Thread Ilia Lobsanov
Hi, please see also http://www.ecos.de/~mailarc/embperl/2001-07/msg00037.html The server is hosting.nurey.net and it's located in Toronto. ilia. - Original Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: "Claude Choquet" <[EMAIL PROTECTED]> Cc: "Embeded PERL ML" <[EMAIL PROTECT

Re: optStripCR

2001-07-21 Thread Ilia Lobsanov
;>[+ $editor +] [$ endforeach $] [$ if scalar @editors > 1 $] http://dmoz.org/editors/send.cgi?toeditor=[+ jo in('+', @editors) +]">all[$ endif $] [$ endif $] ilia. - Original Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: "Ilia Lobsan

Re: optStripCR

2001-07-20 Thread Ilia Lobsanov
Back to my suggestion, wouldn't this be more readable? [$ foreach $i ( 1..5 ) $] [+ $i +] [$ nop $] [$ endforeach $] - Original Message - From: "Bill "Elvis" Gibbs" <[EMAIL PROTECTED]> To: "Ilia Lobsanov" <[EMAIL PROTECTED]>; <[E

Re: optStripCR

2001-07-20 Thread Ilia Lobsanov
Here's a demo of the problem I'm trying to describe: http://dmoz.nurey.net/cr.epl ilia. - Original Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: "Ilia Lobsanov" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, July 20, 2

Re: optStripCR

2001-07-19 Thread Ilia Lobsanov
The reason I asked for optStripCR was to take care of the case when I want to use a html block. In this case, I don't want extra carriage returns. ilia. - Original Message - From: "Akshay Arora" <[EMAIL PROTECTED]> To: "Ilia Lobsanov" <[EMAIL PROTEC

optStripCR

2001-07-19 Thread Ilia Lobsanov
I have an EPO file which needs to have no carriage returns in the final output. I do want carriage returns in the source for readability. Unless I'm missing something, there's no easy way to do this in Embperl. May I suggest another option, optStripCR? When activated, all carriage returns are stri

embperl hosting available

2001-07-12 Thread Ilia Lobsanov
upstream redundancy. Contact me for more details. Regards, Ilia Lobsanov. Nurey Networks Inc. http://www.nurey.net/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem with auto table?

2001-06-06 Thread Ilia Lobsanov
I can suggest checking $maxcol, though it should default to 10. ilia. - Original Message - From: "Mitchell Surface" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 12:02 PM Subject: Problem with auto table? > Hi, > > I'm just getting started with Embperl a

Re: Problem with auto table?

2001-06-06 Thread Ilia Lobsanov
I can suggest checking $maxcol, though it should default to 10. ilia. - Original Message - From: "Mitchell Surface" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 12:02 PM Subject: Problem with auto table? > Hi, > > I'm just getting started with Embperl a

Re: escape '

2001-05-18 Thread Ilia Lobsanov
the SQL way to escape ' is to use ''. The preferred DBI way to escape things is to always use placeholders. See perldoc DBI... or checkout DBIx::AbstractLite as an easier DBI alternative ala $DB->query('SELECT * FROM foo WHERE bar = ?', $bar); ilia. On Fri, May 18, 2001 at 05:41:18AM -0700, E B

Re: embperl feature request: OUTPUT_PATH

2001-03-21 Thread Ilia Lobsanov
On Wed, Mar 21, 2001 at 05:41:51AM +0100, Gerald Richter wrote: > Ilia, > > > > > There's a good thing about Template Toolkit which Embperl seems to be > missing and that is: OUTPUT_PATH. This is similar to EMBPERL_PATH aka 'path' > key for Execute param, but for the case when outputfile is used.

embperl feature request: OUTPUT_PATH

2001-03-20 Thread Ilia Lobsanov
re Embperl will produce outputfiles. Of course, there should also be a corresponding 'output_path' key for the Execute hashref param. Thank you. Ilia Lobsanov. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: use strict?

2001-02-15 Thread Ilia Lobsanov
g. When we start playing around with use strict and the [* *] we start > getting errors saying $___b must be definied and other wierd ones. We > havent been able to duplicate a specific situation that this occurs in > though > > --mike > > > > > At 12:47

Re: use strict?

2001-02-15 Thread Ilia Lobsanov
it fails. Has > anyone else run into this? Is this a bug? If you could email me back at: > [EMAIL PROTECTED], i would appreciate it. Thank you! > > --mike Try this: [$var $var1 $var2 $] I think that makes the whole embperl document act under the `use

Re: feature request/suggestion??

2001-01-02 Thread Ilia Lobsanov
Eitan, I believe Embperl is capable of what you are looking for. eg.: [- $person = new Person; %fdat = %{ $person->data() }; # data method returns { 'person.name' => 'Eitan', ... } -] [# VALUE automatically prefilled #] Thus, no need for .conf files. ilia. Eitan Suez wrote: > > hi all, >

Re: Embperl $optRedirectStdout doesn't seem to work

2000-12-07 Thread Ilia Lobsanov
Gerald Richter wrote: > > The following script doesn't seem to work as expected: > > > > --cut- > > [- > > $optRedirectStdout = 1; > > -] > > > > optRedirectStdout can't be set inside a page, it must be set in the > httpd.conf. See: > > http://perl.apache.org/embpe

Embperl $optRedirectStdout doesn't seem to work

2000-12-06 Thread Ilia Lobsanov
The following script doesn't seem to work as expected: --cut- [- $optRedirectStdout = 1; -] Hello1 [- print "Hello2"; -] --cut- I only get "Hello1". This happens on Embperl 1.3b5 and Embperl 1.3b6, in combination with $escmode =

Re: problem with segmentation fault

2000-11-16 Thread Ilia Lobsanov
FYI, we use Embperl 1.3b5 and 1.3b6 in two different production environments. No problems. ilia. Gerald Richter wrote: > > I don't expect (m)any changes from 1.3b7 to 1.3, so it's safe to use it also > in a production environment > > Gerald

Re: trying to DeleteSession (security bug?)

2000-11-08 Thread Ilia Lobsanov
Shouldn't cookies be sent and validated with MD5 signature? ilia. - Original Message - From: "Angus Lees" <[EMAIL PROTECTED]> To: "Embperl list" <[EMAIL PROTECTED]> Sent: Wednesday, November 08, 2000 23:10 Subject: Re: trying to DeleteSession (security bug?) > On Tue, Nov 07, 2000 at 1

HTML::Embperl::Log and DBIx::Recordset

2000-11-04 Thread Ilia Lobsanov
I think i may have spotted a little bug. Or it may be outdated docs in DBIx::Recordset DEBUGGING section. The error follows the code below: open LOG, ">recordset.log" or die $!; *DBIx::Recordset::LOG = \*LOG ; $DBIx::Recordset::Debug = 2 ; Can't locate object method "STORE" via package "HTML::Em

Re: Embperl 1.3b6: weird error

2000-10-24 Thread Ilia Lobsanov
ginal Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: "Ilia Lobsanov" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 24, 2000 15:17 Subject: Re: Embperl 1.3b6: weird error > > > > I am using EmbperlObject how cou

Re: Embperl 1.3b6: weird error

2000-10-24 Thread Ilia Lobsanov
I am using EmbperlObject how could @INC become corrupted? ilia. - Original Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: "Ilia Lobsanov" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 24, 2000 15:04 Subject: Re: Embpe

Embperl 1.3b6: weird error

2000-10-23 Thread Ilia Lobsanov
All of a sudden, my error log is showing this: [Tue Oct 24 00:37:55 2000] [error] [Tue Oct 24 00:37:55 2000] 14020 null ERR: Can' t locate object method "CurrPackage" via package "HTML::Embperl::DOC::_8" at /usr/l ib/perl5/site_perl/5.005/i386-linux/HTML/Embperl.pm line 866. [Tue Oct 24 00:38:2

RE: GET is ok, POST is not working

2000-10-23 Thread Ilia Lobsanov
James, Are you sure you don't have CGI.pm or something in the middle, eating the form data? Do you have any EMBPERL_OPTIONS set? ilia. > -Original Message- > From: James Lee [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 23, 2000 10:24 AM > To: [EMAIL PROTECTED] > Subject: GET is

RE: Embperl parser probs: nested strings w/ closing block tags

2000-10-23 Thread Ilia Lobsanov
Andrew, Have you tried escaping the "[" using "[["? i.e.: Execute ({ input => \'[[- $param[0] = [1,2,3]; -] Done some substitutions on param0 ... ', Hope this helps. ilia. > -Original Message- > From: Andrew O'Brien [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 23, 2

1.3b6 Embperl.pod

2000-10-21 Thread Ilia Lobsanov
I uploaded the new grammaticaly updated pod to http://nurey.net/Embperl.pod The "diff -c" file is at http://nurey.net/Embperl1.3b6.pod.diff One bug I found is that HTML::Embperl::Req::DeleteSession is mentioned twice. I surmise that the second instance should be something else. I leave it up to y

Re: Embperl Code Archive

2000-10-19 Thread Ilia Lobsanov
Hi everyone, There's recently been some talk about a code archive for embperl. I'd like to bring attention to some of my work, at http://nurey.net/dmoz/ To delve right into the code, go to http://nurey.net/dmoz/source/ Hopefully, Gerald will link to this somewhere. Hi Gerald! ;-) Don't fret; I

Embperl::Mail

2000-10-17 Thread Ilia Lobsanov
Gerald, Can you tell me what is the point of HTML::Embperl::Mail when one can call Embperl::Execute using scalar ref output and them email the scalar? eg.: my $output = ''; HTML::Embperl::Execute( { inputfile => 'blah.epl', output => \$output } ); # email $ouput via eg. Mail::Sendmail ilia. --

Re: WANTED: FAQ and/or Documentation maintainer

2000-10-17 Thread Ilia Lobsanov
I'd be honoured to do this. I can start by going through the current perldoc and updating the grammar. Should I send you a diff? ilia. - Original Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 17, 2000 23:56 Subject: WANTED: FAQ and/or

Re: Problem with passing of variable.

2000-10-07 Thread Ilia Lobsanov
At the top of the template, you forgot: [- $a = shift @param; -] On my own sites, I wrote a "preprocessor" abstraction-type module that copies param to %fdat, so that you don't need the line above. ilia. - Original Message - From: "Ian Fenn" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>

[embperl] next within meta command causes crash

2000-10-07 Thread Ilia Lobsanov
Anyone notice a crash with this little test script: [- @bar = ('a', 'blah', 'c'); -] [$ foreach $foo @bar $] [- next if $foo eq 'blah' -] [+ $foo +] [$ endforeach $] ilia. - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: Secure way of logging in

2000-10-01 Thread Ilia Lobsanov
Rob, you shouldn't rely on JavaScript for this. And I don't see why you need cookies for that. Just use SSL if you don't want a sniffer to intercept the password. ilia. - Original Message - From: "Rob Tanner" <[EMAIL PROTECTED]> To: "Kaare Rasmussen" <[EMAIL PROTECTED]>; <[EMAIL PROTECTE

Re: File IO with Embperl

2000-09-26 Thread Ilia Lobsanov
If you're writing to the file, shouldn't you use '>'? open FILEHANDLE, '>file.txt' or die $!; - Original Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: "Gavin Spomer" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, September 26, 2000 23:18 Subject: Re: File IO with E

Re: Mailing List Archive

2000-09-12 Thread Ilia Lobsanov
Nice, but where's the search functionality? - Original Message - From: "Sander van Zoest" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 12, 2000 0:49 Subject: Mailing List Archive > > Hi, > > > > sort of says it all; I kind of took

RE: %fdat %udat and CGI.pm

2000-08-25 Thread Ilia Lobsanov
Since you are using CGI.pm, I'm assuming you are also using Execute. This may help you: %IN = $cgi->Vars; HTML::Embperl::Execute ( { inputfile => 'blah', fdat => \%IN } ); ilia. > -Original Message- > From: Alexei V. Alexandrov [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 25, 2000

Re: ANNOUNCE: HTML::Embperl 1.3b5 (pre 1.3)

2000-08-20 Thread Ilia Lobsanov
Best regards to all, Ilia Lobsanov. - Original Message - From: "Gerald Richter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, August 20, 2000 15:20 Subject: ANNOUNCE: HTML::Embperl 1.3b5 (pre 1.3) >

Re: Strange behavior

2000-07-10 Thread Ilia Lobsanov
> > [0] & 1) > $]checked[$ endif $]> Blah-Blah instead of that, try this: [- if ($details->[0] & 1) { $fdat{text_mobile_alert} = 'Blah-Blah' } -] Blah-Blah Regards, ilia. - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: help on escaping

2000-06-21 Thread Ilia Lobsanov
Sherwin Daganato wrote: > > i made a mistake in <\b>. it is supposed to be . > i think i made it work by doing like this > [+ " HI! <\/b\\>" +] > > Sherwin Daganato writes: > >Pls help me on this. > > > >how can i make this work? > >[+ " HI! <\b>" +] > > > >thanks. try setting $optRawI

Embperl logo?

2000-05-31 Thread Ilia Lobsanov
Hi all, Is there a logo that we can proudly use on our sites? I was thinking something like http://perl.apache.org/logos/mod_perl.gif but with an -Embperl- label at the bottom as well. If not, I can make one... ilia. - To unsu

Re: Embperl

2000-05-14 Thread Ilia Lobsanov
Gerald Richter wrote: > > > > > Why doesn't this work: > > > > > > Yet this works: > > > > > > The only difference is the space between > > > Is this a bug in Embperl or me? > > > > The problem is that if the if is true you get > > > > and trBGCOLOR isn't a know HTML tag. So either a space

Re: Embperl

2000-05-13 Thread Ilia Lobsanov
Ok let me elaborate and correct my first case: [$ foreach $i @someArray $] ... [- $ctr++ -] [$ endforeach $] So the html (that should be produced) is fine. However, Embperl dies with the error: without Definitely, Embperl doesn't like absence of space at: > Why doesn't this work: > >

Embperl

2000-05-13 Thread Ilia Lobsanov
Why doesn't this work: Yet this works: The only difference is the space between

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Ilia Lobsanov
t; -Original Message- > From: Gerald Richter [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 03, 2000 1:25 PM > To: Ilia Lobsanov; [EMAIL PROTECTED] > Subject: RE: help resolve complex mod_perl EPL framework > > > > > > sorry, forgot one more thing in step 4...

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Ilia Lobsanov
sorry, forgot one more thing in step 4... pm reads $r->content or $r->args. The former fails. ilia. > -Original Message- > From: Ilia Lobsanov [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 03, 2000 11:55 AM > To: Gerald Richter; [EMAIL PROTECTED] > Subject: RE:

RE: help resolve complex mod_perl EPL framework

2000-05-03 Thread Ilia Lobsanov
Embperl... ilia. > -Original Message- > From: Gerald Richter [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 26, 2000 3:49 PM > To: Ilia Lobsanov; [EMAIL PROTECTED] > Subject: RE: help resolve complex mod_perl EPL framework > > > > > > Yes it does print 1. Pro

Embperl HIDDEN

2000-05-01 Thread Ilia Lobsanov
The docs state: <> My question is: (how) can I use the hidden command to generate hidden fields for ALL form fields, regardless if they're already contained in another input field? thank you. - To unsubscribe, e-mail:

EMBPERL_ESCMODE

2000-04-27 Thread Ilia Lobsanov
> > Ok I have another question. Why doesn't < EMBPERL_ESCMODE 0>> work? > > > > It's supposed to set the default to 0, but it's still 3. > > > > It does set it to zero, but only when you use the mod_perl handler and not > if you call Execute on your own. If you call Execute on your own, you need >

RE: help resolve complex mod_perl EPL framework

2000-04-26 Thread Ilia Lobsanov
Ok I have another question. Why doesn't <> work? It's supposed to set the default to 0, but it's still 3. Please help. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: help resolve complex mod_perl EPL framework

2000-04-26 Thread Ilia Lobsanov
> > > > > > options => HTML::Embperl::optDisableFormData > > > > But I am already using options => 256. Isn't it the same thing? > > > > Yes it is, make sure that it really is set by inserting a > > [+ $optDisableFormData +] > > inside the called page. Should print 1. Does it? Yes it does pr

RE: help resolve complex mod_perl EPL framework

2000-04-26 Thread Ilia Lobsanov
> > > > All this works perfectly via GET. > > When using POST, the request hangs at the $r->content point. > > > > Why? > > > > I guess your script has already read the POSTed data, before Execute is > called. Now Embperl, which can't know that the data is already read, tries > to read it again, a

help resolve complex mod_perl EPL framework

2000-04-26 Thread Ilia Lobsanov
I am using embperl in a non-standard way to take care of old perl code which has html embedded in it via print statements. Here is a summarized top-to-bottom (1->2->3) overview of the architecture: 1. legacy.phtml HTML::Embperl::Execute({ inputfile => 'legacy_pm.epl', param => ['legacy.pm

suggestion for Embperl Execute nested

2000-04-20 Thread Ilia Lobsanov
Gerald, et al; Please consider this: I am calling a (child) epl from a (parent) epl via [- Execute($child, $param) -] The child epl does some processing based on the passed $param and creates some variables. The problem is that I would like to use child's vars in the parent epl and i don't want

Re: problem solved, but still weird!

2000-04-20 Thread Ilia Lobsanov
ac restart is what is usually expected of you, unless you use Apache::StatINC, for development only of course. ilia. > -Original Message- > From: Ulrike Schepp [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 20, 2000 2:52 AM > To: Steven D. Arnold > Cc: Embperl Mailingliste > Subject:

Re: Embperl POST data

2000-04-08 Thread Ilia Lobsanov
AIL PROTECTED]> To: "Ilia Lobsanov" <[EMAIL PROTECTED]> Cc: "Embperl@Perl. Apache. Org" <[EMAIL PROTECTED]> Sent: Saturday, April 08, 2000 8:48 Subject: RE: POST data > > > > > > That is, in the same environment, when I select *multiple* > &g

RE: Embperl DBI - Sybase

2000-04-07 Thread Ilia Lobsanov
> -Original Message- > From: mtoro [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 07, 2000 10:53 AM > To: [EMAIL PROTECTED] > Subject: Embperl DBI - Sybase > > > hello, > > I have working Embperl with apache in a redhat 6.1 with DSO. > > I have many querys to Sybase DB and

POST data

2000-04-06 Thread Ilia Lobsanov
ng set according to previous state of form), which my application depends on. Thank you in advance for any help you can provide. Ilia Lobsanov. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [- vs <% vs

2000-03-24 Thread Ilia Lobsanov
Why not just wrap embperl in html comments? I know it's not the best solution, but it's something. ilia. > -Original Message- > From: Gerald Richter [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 23, 2000 11:48 PM > To: Henrik Tougaard > Cc: Embperl@Perl. Apache. Org > Subject: RE

RE: eval

2000-03-21 Thread Ilia Lobsanov
oops never mind my last post. it was my problem. nothing wrong with Embperl. Keep up the good work everybody! :) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

eval

2000-03-21 Thread Ilia Lobsanov
ssfully used eval the same way under normal mod_perl scripts. I would appreciate any help on this. thank you. Ilia Lobsanov. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]