Re: Download images/movies

2004-08-23 Thread william ross
On 21 Aug 2004, at 20:07, Chris Devers wrote: On Sat, 21 Aug 2004, Mark Wheeler wrote: I have a picture gallery I building for my family. When a movie or picture is displayed, I want them to be able to save it. But... if I just provide a link in the coding to the actual file, it will open up in

Re: Download images/movies

2004-08-23 Thread Pete Prodoehl
william ross wrote: On 21 Aug 2004, at 20:07, Chris Devers wrote: On Sat, 21 Aug 2004, Mark Wheeler wrote: This is untested, but I'm guessing that you could write a simple CGI script that takes the URL for an image as an argument -- maybe just using $ENV{'HTTP_QUERY_STRING'} so that the url can

Re: Download images/movies

2004-08-23 Thread Mark Wheeler
Hi William, I think that's what I'm looking for. One question. What do you mean whitelist the filepaths. My only reference point is email. Whitelist for me means that email address on my whitelist always get through, even though the spam software might initially think it's spam. Can you

Re: Download images/movies

2004-08-23 Thread Mark Wheeler
Hi Pete, I'll keep that in mind. Gotta love IE... Mark On Aug 23, 2004, at 6:58 AM, Pete Prodoehl wrote: william ross wrote: On 21 Aug 2004, at 20:07, Chris Devers wrote: On Sat, 21 Aug 2004, Mark Wheeler wrote: This is untested, but I'm guessing that you could write a simple CGI script that

Re: Download images/movies

2004-08-23 Thread Pete Prodoehl
Mark Wheeler wrote: Hi William, I think that's what I'm looking for. One question. What do you mean whitelist the filepaths. My only reference point is email. Whitelist for me means that email address on my whitelist always get through, even though the spam software might initially think it's

Re: Download images/movies

2004-08-23 Thread Morbus Iff
Perhaps set the path of the image directory into the script, hardcoded like so: $path = '/home/fubar/www/images'; or something like that so you are restricting to a certain directory, and not just letting any file be read in by the cgi and sent to the This isn't safe either. Someone could

opengl-0.54

2004-08-23 Thread jmcs3
hello i would like to install the opengl-perl module i did not install the mesa package since opengl lives already within macosx but i am having a terrible time configuring the Makefile.PL does anybody know the right configuration with the necessary paths on a default macosx 10.3.4 install ? # ..

Re: Download images/movies

2004-08-23 Thread Pete Prodoehl
Morbus Iff wrote: Perhaps set the path of the image directory into the script, hardcoded like so: $path = '/home/fubar/www/images'; or something like that so you are restricting to a certain directory, and not just letting any file be read in by the cgi and sent to the This isn't safe

PerlObjects and OutlineView problems

2004-08-23 Thread Rick Frankel
I have created an outline field w/ perl objects as the items. Everything works ok until I dereference the items in either a doubleClick (as in the OutlineView example) or via itemAtRow, at which point the item is corrupted (the objectForItem value is blanked out and a Bizarre copy of CODE error

Re: Download images/movies

2004-08-23 Thread Joel Rees
I think that's what I'm looking for. One question. What do you mean whitelist the filepaths. My only reference point is email. Whitelist for me means that email address on my whitelist always get through, even though the spam software might initially think it's spam. Can you clarify? If the

Re: Download images/movies

2004-08-23 Thread william ross
On 23 Aug 2004, at 18:49, Morbus Iff wrote: Perhaps set the path of the image directory into the script, hardcoded like so: $path = '/home/fubar/www/images'; or something like that so you are restricting to a certain directory, and not just letting any file be read in by the cgi and sent to

Re: Download images/movies

2004-08-23 Thread william ross
On 23 Aug 2004, at 12:14, Chris Devers wrote: On Mon, 23 Aug 2004, william ross wrote: snip This will mean that jpegs in that directory can't ever be used on pages -- which would kind of ruin the fun. There seems to be an easy workaround though: symlink ~/Sites/images (or whatever it is) to

Re: Download images/movies

2004-08-23 Thread Chris Devers
On Mon, 23 Aug 2004, william ross wrote: On 23 Aug 2004, at 12:14, Chris Devers wrote: On Mon, 23 Aug 2004, william ross wrote: snip This will mean that jpegs in that directory can't ever be used on pages -- which would kind of ruin the fun. There seems to be an easy workaround though: symlink