Re: Help with Select/option

2001-08-15 Thread Gerald Richter
> it may be an issue with using div tags or maybe in the way the page is being > submitted back to itself. that is, (now i am running on windows nt) maybe > the > embperl stuff is not really being run (other than the first time when the > page loads > itself) at the top of the page when the for

Re: Using Lingua::Ispell in Embperl

2001-08-15 Thread Neil Gunton
I thought you might be interested in a follow-up to this thread. I ended up implementing a spellchecking daemon using Paul Kulchenko's wonderful SOAP::Lite module (http://www.soaplite.com and CPAN). You can take a look at a demo and download the client & server scripts from my website: http:/

RE: Help with Select/option

2001-08-15 Thread Boyd, David
it may be an issue with using div tags or maybe in the way the page is being submitted back to itself. that is, (now i am running on windows nt) maybe the embperl stuff is not really being run (other than the first time when the page loads itself) at the top of the page when the form does a post

Re: Help with Select/option

2001-08-15 Thread Gerald Richter
> Yes, I did try your suggestion and it still did not work. > > Now, what I did was break out my html file so that each div tag is its own > html page with the > need embperl on it. This seems to work as expected. That is when the next > page button is selected and > the page is submitted, the n

RE: Help with Select/option

2001-08-15 Thread Boyd, David
Yes, I did try your suggestion and it still did not work. Now, what I did was break out my html file so that each div tag is its own html page with the need embperl on it. This seems to work as expected. That is when the next page button is selected and the page is submitted, the next page can

Re: Help with Select/option

2001-08-15 Thread Gerald Richter
> Thanks for the reply. > > I really am not sure what the real problem is here. > Did you read my previous mail ? Try to change method=POST to method=GET. If this changes things, it's an Embperl bug on windows and you should upgrade to the CVS version of Embperl. BTW. Netscape is not able to sen

Please reply to the list also (was: Re: Help with Select/option)

2001-08-15 Thread Gerald Richter
Hi, if you answer any questions that are posted to the list, please reply to the list also. This avoids duplication of answers and thereby unnecessary work. Additionaly it helps people that searches the mailinglist archive, to find an answer without the need to ask the same questions again. Than

Re: Is there a global session hash

2001-08-15 Thread Gerald Richter
> Being new to embperl and mod_perl, I was wondering is there a global session > hash table or something like that? if so, how does one > go about using it. Yes, it's called %udat. The setup is decribed here http://perl.apache.org/embperl/Embperl.pod.7.html#Session_handling Gerald ---

Is there a global session hash

2001-08-15 Thread Boyd, David
Being new to embperl and mod_perl, I was wondering is there a global session hash table or something like that? if so, how does one go about using it. .. Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: Help with Select/option

2001-08-15 Thread Boyd, David
Thanks for the reply. I really am not sure what the real problem is here. Orginally I created a single html form which had the embed perl in it. the logic was such that the user would select a button on the screen and the related div tag would then display. the user then would make a selectio

Re: errors with no filename

2001-08-15 Thread Gerald Richter
Hi. > > We've been working with embperl2, and found the > problem that errors like: > > [Wed Aug 15 14:24:24 2001] [error] [27952]ERR: 49: Line 343: Endtag '/tr' > doesn't match starttag 'table' > > Are occuring. Mostly this is all well and good, > but it's very hard from this to work out > where

Help with Select/option

2001-08-15 Thread Boyd, David
The problem I am haveing is that I have a form in which I want to submit back to itself. this form is a bunch of DIVs in which I walk the user through. On the first div I ask the user to select a client name, code example: [+ $cmbClientKeyText[$row] +] The problem that I am having is that

errors with no filename

2001-08-15 Thread Michael Stevens
Hi. We've been working with embperl2, and found the problem that errors like: [Wed Aug 15 14:24:24 2001] [error] [27952]ERR: 49: Line 343: Endtag '/tr' doesn't match starttag 'table' Are occuring. Mostly this is all well and good, but it's very hard from this to work out where the errors are c

RE: question RE: using file handler to read a flatfile and spit out s plit values

2001-08-15 Thread Angeles, Michael (Michael)
Thanks, Luis. I was aware of [$ foreach $] but wasn't sure if it could be used when opening a file handler. Thanks again. -Mike Michael Angeles | Information Specialist Lucent Tech./Bell Labs | Integrated Info. Solutions e: [EMAIL PROTECTED] | t: 908 582 5589 | m: 917 613 6935 > -Original

Re: ANNOUNCE: syntax definition for vim 6.0

2001-08-15 Thread Gerald Richter
Hi, > > Although I`m not VIM programmer I totally rewritten official Embperl syntax > definition from scratch because it is not compatible with vim >= 6. Aah, I see there is the reason for a new syntax :-) > > DOWNLOAD: > http://vim.sourceforge.net/scripts/search_results.php?keywords=Embperl >

ANNOUNCE: syntax definition for vim 6.0

2001-08-15 Thread Lukas Zapletal
Hello all! Although I`m not VIM programmer I totally rewritten official Embperl syntax definition from scratch because it is not compatible with vim >= 6. I used clusters so the syntax file is cleaner and smaller. The script should work under vim 5.x and 6.x. Features: - syntax highliting for Ja

Re: $] problem

2001-08-15 Thread Lukas Zapletal
>You're suggesting that Embperl changes its syntax, affecting thousands >of web pages (OK, so this is completely guessd :) ) simply because >you could use a variable thats *deprecated* (ie will be completely >removed in the near future) and you're having problems writing a >syntax definition? Is

Re: $] problem

2001-08-15 Thread Gerald Richter
> Hello, I`m rewriting Embperl`s syntax file definition for upcoming VIM 6.0. There are already two of them (see http://perl.apache.org/embperl/Embperl.pod.17.html#VIM ), but I personaly never have tried them. > There is a confilct with $] because my syntax highlight script uses perl.vim > hig

Re: HTML::EmbperlObject::Execute w/in CGI

2001-08-15 Thread Gerald Richter
> > 1) is this possible and is EmbperlObject::Execute really what I'm > looking for? > When I understand right what you want to do, Embperl::Execute would be better. (It just includes your header/footer at the desired place) If you have a CGI that doesn't generate any output (only does computati

Re: Problems with using Select

2001-08-15 Thread Gerald Richter
> I am using mod_perl/embperl under windows. The problem that I am haveing > is that I have a combo box in which the options are generated from perl. I > select an item from the combobox. If I submit the page back to itself, the > value in %fdat is the first item in the combobox. If I submit

Re: module cache

2001-08-15 Thread Gerald Richter
Hi, > > > > > use Apache::Reload > > > > I added PerlInitHandler Apache::Reload to my httpd.conf but *.pm files are > cached :-( > what's wrong? > Maybe you forgot to say make install for your module ? > Is there another way to stop module cache or force it to reload all (besides > apache restar

$] problem

2001-08-15 Thread Lukas Zapletal
Hello, I`m rewriting Embperl`s syntax file definition for upcoming VIM 6.0. There is a confilct with $] because my syntax highlight script uses perl.vim highlighter to highlight perl`s code. There can be another problem also (I know $] variable is depricated, but still usable). The code: [$ if(