Re: XHTML (was Re: One link to 2 frames)

2005-09-21 Thread David Dorward
On Wed, Sep 21, 2005 at 10:18:37AM -0400, Chris Devers wrote: > On Wed, 21 Sep 2005, David Dorward wrote: > > XHTML 1.1 is XHTML 1.0 Strict with Ruby added. > Really? Yes. > As in the scripting language Ruby? No. As in the Ruby Annotation language. http://www.w3.org/TR/2001/REC-ruby-200

Re: XHTML (was Re: One link to 2 frames)

2005-09-21 Thread Chris Devers
On Wed, 21 Sep 2005, David Dorward wrote: > XHTML 1.1 is XHTML 1.0 Strict with Ruby added. Really? As in the scripting language Ruby? Weird... -- Chris Devers öQKÂm݃g5¾ÿ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: One link to 2 frames

2005-09-21 Thread David Dorward
a page explaining that the process will take some time and give them a link (including the job id) to check to see if it is ready yet. Idealy you will provide some time estimate on the issue. You can also use JavaScript or a meta refresh to periodically poll the server without user intervent

Re: One link to 2 frames

2005-09-21 Thread MNibble
event to your situation. As it is, we can only try to answer the questions you ask. (And the answers you've recieved are good ones in the context of the question). The first is this link which fills to frames There are two ways to do this. 1. Linking to a new document 2. JavaScript In

XHTML (was Re: One link to 2 frames)

2005-09-21 Thread David Dorward
On Wed, Sep 21, 2005 at 12:11:59PM +0200, MNibble wrote: > I won't say you are wrong, since you are right.I (please don't throw > stones or bits at me) already use css und div span and stuff like that > and if it is called xhtml that's fine for me That isn't what is called XHTML. XHTML 1.0 is

Re: One link to 2 frames

2005-09-21 Thread MNibble
;. CGI should be kept for the server side manipulations of user data. Which is secure. The manipulation of FRAMES from CGI is a waste of time. And where I live with a standard link speed of 1.2Kb/sec speed means a lot to me. YES - No Broadband. cheers from James I won't say you are wrong,

Re: One link to 2 frames

2005-09-21 Thread David Dorward
tuation. As it is, we can only try to answer the questions you ask. (And the answers you've recieved are good ones in the context of the question). > The first is this link which fills to frames There are two ways to do this. 1. Linking to a new document 2. JavaScript In most cases the

Re: One link to 2 frames

2005-09-21 Thread MNibble
html page which contains the frames you want the user to see. Kindest Regards, -- Bill Stephenson Thx both of you. But i realy think there musst be a possibilty. I have two javascript funktions which i try to get rid of. The first is this link which fills to frames ( i would also fork into two

Re: One link to 2 frames

2005-09-21 Thread Jimmy George
the server side manipulations of user data. Which is secure. The manipulation of FRAMES from CGI is a waste of time. And where I live with a standard link speed of 1.2Kb/sec speed means a lot to me. YES - No Broadband. cheers from James -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: One link to 2 frames

2005-09-20 Thread Bill Stephenson
On Sep 20, 2005, at 7:05 AM, MNibble wrote: Aloha is there a standard solution to this problem, by now i do this with a javascript, but i want to change it. Thanks for your time MNibble I think with CGI it would be to create, then send to the client, the main html page which contains the

Re: One link to 2 frames

2005-09-20 Thread David Dorward
On Tue, Sep 20, 2005 at 02:05:09PM +0200, MNibble wrote: > is there a standard solution to this problem To what problem? (Please don't depend on people reading subject lines). There are two: 1. Don't use frames. http://www.allmyfaqs.com/faq.pl?Problems_with_using_frames 2.

One link to 2 frames

2005-09-20 Thread MNibble
Aloha is there a standard solution to this problem, by now i do this with a javascript, but i want to change it. Thanks for your time MNibble -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Force a file download for link

2005-08-30 Thread Lewis Kirk
At 1:41 PM -0700 8/30/05, Denzil Kruse wrote: >Hi, > >I want my users to download a csv file. When they >left click on the link, it brings the file up within >the browswer. They can of course do a right click and >"Save Target As" depending on the browser. >

Re: Force a file download for link

2005-08-30 Thread Denzil Kruse
--- Wiggins d'Anconia <[EMAIL PROTECTED]> wrote: > > In one my libraries I use, > > my %header_options = ( -Content_Type => > 'application/octet-stream', >-Content_Length => > $content_length, > ); > > if (defined $self->{'filename'} and > $self-

RE: Force a file download for link

2005-08-30 Thread Paul Archer
You might want to look at how sourceforge.net handles things when you go to download. I don't know the mechanism, but it's the behavior you want. Paul 3:23pm, Denzil Kruse wrote: --- Bob Showalter <[EMAIL PROTECTED]> wrote: use CGI qw(:standard); open FILE, ...blah blah... pri

Re: Force a file download for link

2005-08-30 Thread Wiggins d'Anconia
Denzil Kruse wrote: > > --- Bob Showalter <[EMAIL PROTECTED]> > wrote: > > > >> use CGI qw(:standard); >> >> open FILE, ...blah blah... >> print header('application/octet-stream'); >> print while ; >> > > > Thanks for the help Bob! Is there another way besides > the content-dispositio

RE: Force a file download for link

2005-08-30 Thread Denzil Kruse
--- Bob Showalter <[EMAIL PROTECTED]> wrote: > >use CGI qw(:standard); > >open FILE, ...blah blah... >print header('application/octet-stream'); >print while ; > Thanks for the help Bob! Is there another way besides the content-disposition to specify an attachment or filename

RE: Force a file download for link

2005-08-30 Thread Bob Showalter
Denzil Kruse wrote: > Hi, > > I want my users to download a csv file. When they > left click on the link, it brings the file up within > the browswer. They can of course do a right click and > "Save Target As" depending on the browser. > > But I don&#x

Force a file download for link

2005-08-30 Thread Denzil Kruse
Hi, I want my users to download a csv file. When they left click on the link, it brings the file up within the browswer. They can of course do a right click and "Save Target As" depending on the browser. But I don't want to fuss with instructions and confused users. I would jus

RE: Link

2004-06-14 Thread Ash Singh
-Original Message- From: Werner Otto [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 1:58 PM To: Ash Singh; [EMAIL PROTECTED] Subject: Re: Link On Mon, 14 Jun 2004 13:46:04 +0200, Ash Singh <[EMAIL PROTECTED]> wrote: > > > -Original Message- > From: W

Re: Link

2004-06-14 Thread Werner Otto
On Mon, 14 Jun 2004 13:46:04 +0200, Ash Singh <[EMAIL PROTECTED]> wrote: -Original Message- From: Werner Otto [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 1:25 PM To: [EMAIL PROTECTED] Subject: Link Hi all, I have form that is made up of records retrieved from a databas

RE: Link

2004-06-14 Thread Ash Singh
-Original Message- From: Werner Otto [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 1:25 PM To: [EMAIL PROTECTED] Subject: Link Hi all, I have form that is made up of records retrieved from a database. The first column presents the information as a hyperlink. I need to be able

Link

2004-06-14 Thread Werner Otto
Hi all, I have form that is made up of records retrieved from a database. The first column presents the information as a hyperlink. I need to be able to keep a record on which one of the multiple hyperlinks where clicked. Based upon the selected link I need to pass the value to the next CGI and

Re: image link

2004-01-25 Thread Rod
Wiggins d Anconia wrote: Please bottom post... I am sorry, that was a little hastely written out of frustration. I am trying to use CGI.pm to display a row of images. Each of those images are a link. I can make a text link, but have not figured the right syntax for making

Re: image link

2004-01-23 Thread Andrew Gaffney
scriptmonkey wrote: I have having difficulty with my brain lately. I need to display an image that is a link. I cannot find an example anywhere. -- Andrew Gaffney System Administrator Skyline Aeronautics, LLC. 776 North Bell Avenue Chesterfield, MO 63005 636-357-1548 -- To unsubscribe, e-mail

RE: image link

2004-01-23 Thread Chris Mortimore
ent: Friday, January 23, 2004 4:19 PM To: Wiggins d Anconia; scriptmonkey; [EMAIL PROTECTED] Subject: Re: image link I am sorry, that was a little hastely written out of frustration. I am trying to use CGI.pm to display a row of images. Each of those images are a link. I can make a text link, b

Re: image link

2004-01-23 Thread Wiggins d Anconia
Please bottom post... > I am sorry, that was a little hastely written out of frustration. > > > I am trying to use CGI.pm to display a row of images. Each of those images > are a link. I can make a text link, but have not figured the right syntax for > making an image link.

Re: image link

2004-01-23 Thread scriptmonkey
I am sorry, that was a little hastely written out of frustration. I am trying to use CGI.pm to display a row of images. Each of those images are a link. I can make a text link, but have not figured the right syntax for making an image link. Hope that was better, Rod. On Fri, 23 Jan 2004 14

Re: image link

2004-01-23 Thread Wiggins d Anconia
> I have having difficulty with my brain lately. I need to display an image > that is a link. I cannot find an example anywhere. > > Thanks, > Rod. > Huh? Slow down, breathe, then give us that again coherently http://danconia.org -- To unsubscribe, e-mail: [EM

Re: image link

2004-01-23 Thread Andrew Brosnan
On 1/23/04 at 3:14 PM, [EMAIL PROTECTED] (scriptmonkey) wrote: > I have having difficulty with my brain lately. I need to display an > image that is a link. I cannot find an example anywhere. > Try the World Wide Web. I think you may find an example there. -- Andrew Brosnan - Brosco

image link

2004-01-23 Thread scriptmonkey
I have having difficulty with my brain lately. I need to display an image that is a link. I cannot find an example anywhere. Thanks, Rod. -- Iowa Telecom WebMail (http://www.iowatelecom.net) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Earth Link settings for PERL & Sendmail

2003-03-31 Thread David Gilden
FYI: After 1/2 hour on the phone with tech support here's some info that I hope will help others! #!/usr/local/bin/perl my $mailprog = '/usr/lib/sendmail'; # the real path to sendmail # seems to vary depending on the type of account

Creating a link for downloading

2002-04-02 Thread Octavian Rasnita
Hi all, I want to make an HTML file and to put a link such as: Click here to download file 1 Can you tell me what should my link.pl script look like? I want the file to start downloding when a user clicks that link. After she clicks that link, I don't want to open any web page, or to be

Multiple Print "Location:$link";

2002-02-07 Thread Rob
We have an epage server for our customers to use; one of them is a fire department and they would like to have a page setup with check boxes and send the same message to all who have a check beside there name. I've been trying something like the following... if($shawn ne "") {

WWW Authentication link

2001-09-08 Thread Karthik Krishnamurthy
hullo list, this was posted on bugtraq recently. should be of help here too. http://www.seifried.org/security/www-auth/ Paper on WWW Authentication /kk -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: cgi-lib.pl link

2001-06-08 Thread Douglas Sparling
--- Curtis Poe <[EMAIL PROTECTED]> wrote: > Recently, someone sent a link to an article by (I > think) Mark-Jason Dominus which explained all of > the bad things about cgi-lib.pl. Could someone > please resend the link? I'd like to have it handy > to send to peop

cgi-lib.pl link

2001-06-08 Thread Curtis Poe
Recently, someone sent a link to an article by (I think) Mark-Jason Dominus which explained all of the bad things about cgi-lib.pl. Could someone please resend the link? I'd like to have it handy to send to people rather than have to "re-explain" everything. Cheers, Curtis Po