Form Reading

2002-01-08 Thread C.Hauser - IT assistance GmbH
Hello This is off topic, thanks for a direct hint to a module or an appropriate mailing list. I want to read an HTML form into an hash. But I don't want to use HTML::Tree or similar DOM Object trees. I need simply all form relevant information as an hash which is human readable. Example: my

Beginner's FixupHandler question

2002-01-08 Thread Zsolt Czinkos
Hello everyone I've just started learning modperl and I started with a simple module for apache httpd 1.3.22. This simple module (see below) sets gets a cookie at every request. I thought it wasn't too difficult. I put it into the fixup phase (any problem with it?). First it seemed to work,

Re: problems with Apache::AuthTicket

2002-01-08 Thread Michael Schout
Tomasz Konefal wrote: PerlSetVar FtpFuTicketSecretTable ticketsecrets:sec_version:sec_data PerlSetVar FtpFuTicketExpires 15 PerlSetVar FtpFuTicketLogoutURI /authorized/ftpfu.cgi PerlSetVar FtpFuTicketLoginHandler /ftpfulogin PerlSetVar FtpFuTicketIdleTimeout 1 PerlSetVar FtpFuPath /

[OT] Re: Form Reading

2002-01-08 Thread Matthew Pressly
At 12:55 PM 1/8/2002 +0100, C.Hauser - IT assistance GmbH wrote: Hello This is off topic, thanks for a direct hint to a module or an appropriate mailing list. I want to read an HTML form into an hash. But I don't want to use HTML::Tree or similar DOM Object trees. I need simply all form

Re: mod-perl, modules and initializations

2002-01-08 Thread Perrin Harkins
What is the difference between how a BEGIN block and an anonymous block in a module loaded into mod_perl? It looks to me like you are confused about our and BEGIN. If you change the our to a use vars I think it will fix your problems. This is not mod_perl-specific. Are anonymous blocks in

Re: Form Reading

2002-01-08 Thread Robert Landrum
Hello This is off topic, thanks for a direct hint to a module or an appropriate mailing list. I want to read an HTML form into an hash. But I don't want to use HTML::Tree or similar DOM Object trees. I need simply all form relevant information as an hash which is human readable. Example:

Re: Beginner's FixupHandler question

2002-01-08 Thread Stathy G. Touloumis
I've just started learning modperl and I started with a simple module for apache httpd 1.3.22. This simple module (see below) sets gets a cookie at every request. I thought it wasn't too difficult. I put it into the fixup phase (any problem with it?). First it seemed to work, but when I put a

Re: Beginner's FixupHandler question

2002-01-08 Thread Paul Lindner
On Tue, Jan 08, 2002 at 10:07:18AM -0600, Stathy G. Touloumis wrote: I've just started learning modperl and I started with a simple module for apache httpd 1.3.22. This simple module (see below) sets gets a cookie at every request. I thought it wasn't too difficult. I put it into the fixup

Re: Beginner's FixupHandler question

2002-01-08 Thread Zsolt Czinkos
My One request is: [czinkos@vajradhara apache]$ telnet localhost 8080 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GET / HTTP/1.0 Cookie: pritty=prutty It is only 1 html source. Thanks czinkos On Tue, Jan 08, 2002 at 10:07:18AM -0600, Stathy G. Touloumis wrote:

Re: Beginner's FixupHandler question

2002-01-08 Thread Robert Landrum
At 2:40 PM +0100 1/8/02, Zsolt Czinkos wrote: --- Here's my simple script: package SetMyCookies; use Apache; use Apache::Constants; use Apache::Cookie(); Very important to use strict when writing anything in mod_perl. sub handler { my $r = shift; $c = $r-header_in(Cookie); $c

mod_accel English documentation

2002-01-08 Thread Igor Sysoev
Danil Pismenny had begun to translate into English mod_accel documentation: http://dapi.chaz.ru/articles/mod_accel.xml?lang=en Please send him ([EMAIL PROTECTED]) corrections. If you don't understand some translation at all ask me. Igor Sysoev

Apache::RPC::Server questions

2002-01-08 Thread Bruce W. Hoylman
Ciao! Looking at RPC::XMl::Server and subsequently the Apache::RPC::Server subclass I see that methods are implemented via passing a code ref to a named or anonymous subroutine that implements the actual method logic. Given the persistent nature of perl in an Apache/modperl environment, is

Re: take23 and what we're doing - TERMIUMplus

2002-01-08 Thread jay
TERMIUMplus --- TERMIUMplus (www.termium.com) is a trilingual application that allows translators and terminologists to search a collection of 1.5 million entries in English, French and Spansih. The system is freely available to any employee of the Canadian Federal government as well as

Problem with exception handler in guide?

2002-01-08 Thread Matthew Pressly
I am trying to get the exception class described in the guide to work, but am having trouble with die returning the class incorrectly. The example in the guide was: die My::Exception-RetCode(code = 204); The module code is at:

Re: take23 and what we're doing - EDDS

2002-01-08 Thread jay
EDDS There are few things more sure in life than death and taxes. Ok, well I can think of one more - tax forms! The Canada Customs and Revenue Agency (CCRA - our Federal tax collection agency - like the infamous IRS) has a collection of approximate 10,000 forms, guides and other

RE: [ANNOUNCE] Apache::UploadMeter-0.15

2002-01-08 Thread eCap
So if I have two different html forms that perform uploads, can I define two different forms in the httpd.conf file? -Original Message-From: Issac Goldstand [mailto:[EMAIL PROTECTED]]Sent: Monday, January 07, 2002 10:08 PMTo: [EMAIL PROTECTED]Subject: [ANNOUNCE]

Re: [ANNOUNCE] Apache::UploadMeter-0.15

2002-01-08 Thread Issac Goldstand
Eventually, yes, but unfortunately not yet. Until the configuration for _one_ meter isn't 100% stable, I'm not going to set up multiple meters. But it is the first thing on the ToDo list after it becomes stable. Issac eCap wrote: So if I have two different html forms that perform

Re: FixupHandler called twice

2002-01-08 Thread Balazs Rauznitz
On Wed, Jan 09, 2002 at 01:42:58AM +0100, Zsolt Czinkos wrote: Hi My question again (a bit refined): When I request an URI without a filename (e.g: http://localhost:8080/), my perl fixup handler is called three times. Why? How can I avoid this? Can I? http://localhost:8080/index.html

Re: [ANNOUNCE] Apache::AppCluster 0.2

2002-01-08 Thread Mark Maunder
Apache::AppCluster is now in CPAN and can be accessed at: http://search.cpan.org/search?dist=Apache-AppCluster This consists of a client and server module that can be used to develop mod_perl clustered web services. A client application can make multiple simultaneous API calls to a mod_perl

Re: mod-perl, modules and initializations

2002-01-08 Thread Perrin Harkins
By load stage I mean BEGIN blocks, anonymous subroutines in packages loaded at startup, or even named subroutines called from startup.pl All of those things happen during server startup, before any request has been submitted. There is no form data at that time. Maybe if you could explain

Re: mod-perl, modules and initializations

2002-01-08 Thread Dave Morgan
I'm trying to populate select boxes(or other input types)for my HTML pages. An example would be a drop down list of states and/or provinces. A large number of these are populated from lookup tables in the dba and are relatively static. I understand there is no form data at that time, however,

Sample Code for CGI initialization problem

2002-01-08 Thread Dave Morgan
Hi All, I have attached sample code that illustrates the problem Load COMMON.pm on startup, put html and cgi in proper places, configure to run the cgi as an Apache::Registry script. In a browser, load index html, fill out the fields and submit. Your

Re: mod-perl, modules and initializations

2002-01-08 Thread Perrin Harkins
On Tuesday 08 January 2002 08:16 pm, Dave Morgan wrote: I'm trying to populate select boxes(or other input types)for my HTML pages. An example would be a drop down list of states and/or provinces. A large number of these are populated from lookup tables in the dba and are relatively static.

Ip Address On Outbound

2002-01-08 Thread John Buwa
Hello, I havea question on outbound ips. I am writing a program that a user can enter an address and a spider will go and retrieve only the information that was request and then display the results to the enquiring user. My question is though, i have grabed the users ip address as the initiator

Re: Ip Address On Outbound

2002-01-08 Thread Luciano Miguel Ferreira Rocha
On Wed, Jan 09, 2002 at 12:27:12AM -0500, John Buwa wrote: How would i changed outgoing requests to reflect the invoking users ip and not my systems ip? You can't just change the ip you use to connect to other systems... But you may have some luck in using the Via: and X-Forwarded-For:

[error] Cannot remove module mod_perl.c: not found in module list

2002-01-08 Thread cloudor
Hello all, I get the message shown as [error] Cannot remove module mod_perl.c: not found in module list when i restart apache after installing mod_perl and adding LoadModule perl_module modules/mod_perl.so in the httpd.conf . my os: windows 2k All my steps: 1. Download

cvs commit: modperl-2.0/src/modules/perl modperl_io.c

2002-01-08 Thread dougm
dougm 02/01/08 11:04:22 Modified:src/modules/perl modperl_io.c Log: plug leaking tied STD{IN,OUT} objects Revision ChangesPath 1.6 +2 -0 modperl-2.0/src/modules/perl/modperl_io.c Index: modperl_io.c

cvs commit: modperl-2.0/t/response/TestModperl print.pm

2002-01-08 Thread dougm
dougm 02/01/08 14:46:09 Modified:t/conf modperl_extra.pl t/response/TestModperl print.pm Log: add some END blocks for testing Revision ChangesPath 1.12 +4 -0 modperl-2.0/t/conf/modperl_extra.pl Index: modperl_extra.pl

cvs commit: modperl-2.0/xs/maps modperl_functions.map

2002-01-08 Thread dougm
dougm 02/01/08 14:48:38 Modified:xs/Apache/RequestIO Apache__RequestIO.h xs/maps modperl_functions.map Log: dd UNTIE method to avoid warning from pp_untie: untie attempted while %d inner references still exist which is legit in our case, since we do not

cvs commit: modperl-2.0/t/response/TestModperl readline.pm getc.pm

2002-01-08 Thread dougm
dougm 02/01/08 14:49:32 Modified:t/response/TestModperl readline.pm getc.pm Log: untie STDIN Revision ChangesPath 1.3 +2 -0 modperl-2.0/t/response/TestModperl/readline.pm Index: readline.pm

cvs commit: modperl-2.0/src/modules/perl mod_perl.c

2002-01-08 Thread dougm
dougm 02/01/08 16:31:39 Modified:src/modules/perl mod_perl.c Log: rid warning #ifdef USE_ITHREADS Revision ChangesPath 1.104 +1 -1 modperl-2.0/src/modules/perl/mod_perl.c Index: mod_perl.c