RE: CGI

2001-10-04 Thread Gary L. Armstrong
Just to toss my experiences in here, my single CGI used print<<_ to quote my HTML, the thing I thought was odd is that if I put the Content-type line inside the block, it appeared on the screen. I had assumed that this is some sort of Apache setting, perhaps it looks for a .cgi extension and sets

RE: Need some clarification of rules for qw()

2001-10-04 Thread Gary L. Armstrong
First off, I really like Ask's response, that was the sort of thing I needed: food for thought. And Curtis, I knew I had seen that chart somewhere but this late in the afternoon I must be tired. I do want those interpolated, so tomorrow I'll play around with it and see what I can come up with. An

Re: Need some clarification of rules for qw()

2001-10-04 Thread Curtis Poe
--- "Gary L. Armstrong" <[EMAIL PROTECTED]> wrote: > I have written this: > > system qw( /usr/lib/lpd/pio/etc/piomisc_ext mkpq_remote_ext -q $qname > -h $newhost.$domain.ko.com -r jfsrvrsap -t bsd -d $qname > "Jetforms NT Server TEMPORARY" ); > > Nevermind what I am doing (adding

Re: Need some clarification of rules for qw()

2001-10-04 Thread Ask Bjoern Hansen
On Thu, 4 Oct 2001, Gary L. Armstrong wrote: > system qw( /usr/lib/lpd/pio/etc/piomisc_ext mkpq_remote_ext -q $qname > -h $newhost.$domain.ko.com -r jfsrvrsap -t bsd -d $qname > "Jetforms NT Server TEMPORARY" ); > > Nevermind what I am doing (adding a remote print queue), I am ma

Need some clarification of rules for qw()

2001-10-04 Thread Gary L. Armstrong
I have written this: system qw( /usr/lib/lpd/pio/etc/piomisc_ext mkpq_remote_ext -q $qname -h $newhost.$domain.ko.com -r jfsrvrsap -t bsd -d $qname "Jetforms NT Server TEMPORARY" ); Nevermind what I am doing (adding a remote print queue), I am mainly interested in using the qw()

Looking for a script that will "clean up" and print a page

2001-10-04 Thread Rusty Wilson
Hi all, I am fairly new to Perl, most of my experience so far has been to modify existing scripts. I have a problem that I cant find a script for and I am hoping someone here can point me to a script that already exists. Since I dont really know what to ask for, let me describe the problem, and

Weekly list FAQ posting

2001-10-04 Thread casey
NAME beginners-faq - FAQ for the beginners-cgi mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can also specify your subscription email address by sending email to (assuming [EMAIL PROTECTED] is your email addr

Re: NNED HELP

2001-10-04 Thread online-batonrouge
You'll need to be more specific. What kinds of information do you want to "pull off"? What URL? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: CGI

2001-10-04 Thread RoadRaat
In a message dated Thu, 4 Oct 2001 10:21:27 AM Eastern Daylight Time, [EMAIL PROTECTED] writes: > when writing to a console, you simply use \n to move to the next line > but using the same code in a browser I get everything on the same line. > > is there a way that when writing to HTML, the \n

Re: CGI

2001-10-04 Thread Bill Jones
On 10/4/01 10:20 AM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm not really clear on how PERL works when writing HTML. > > when writing to a console, you simply use \n to move to the next line > but using the same code in a browser I get everything on the same line. > > is there a way

RE: CGI

2001-10-04 Thread Bob Showalter
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 04, 2001 10:20 AM > To: [EMAIL PROTECTED] > Subject: CGI > > > I'm not really clear on how PERL works when writing HTML. The same way any other tool does when writing HTML. > > when wr

CGI

2001-10-04 Thread Greg . Froese
I'm not really clear on how PERL works when writing HTML. when writing to a console, you simply use \n to move to the next line but using the same code in a browser I get everything on the same line. is there a way that when writing to HTML, the \n gets converted to or do you have to explicitl

Re: mod_perl/browser language

2001-10-04 Thread fliptop
Rob wrote: > > How can I detect the browser language using mod_perl? > > I tried this: > > $ENV{'HTTP_ACCEPT_LANGUAGE'}; > > but it doesn't seem to work.. read them: $lang = $r->subprocess_env->{'HTTP_ACCEPT_LANGUAGE'}; write them: $r->subprocess_env( 'SOME_NEW_VAR' => $somevalue ); -- T

Re: NNED HELP

2001-10-04 Thread Jan-Willem Haaring
You can use the LWP:Simple module to connect to an URL and fetch a webpage. ie. use LWP:: Simple; $information = get("http://www.perl.com); .. $information now contains the HTML code of the website. Remove the HTML tags and you have you're information. tchau, Jan-Willem On Thu, 4 Oct 2001, G

NNED HELP

2001-10-04 Thread Gareth Londt
PLEASE CAN SOMONE HELP ME, IM IN DESPERATE NEED OF SOMTHING OR SOME CODE TO DO THIS? i need a script that will connect to a url and pull off information and this needs to be done in a perl script. Please can somone help, ive tried everything that i know of but ti know that there is somthing th