Re: Was cgi for slide show

2007-04-24 Thread Hershel Fisch
On 4/23/07 11:32 PM, Jim Ault [EMAIL PROTECTED] wrote: Thanks, got it. Hershel On 4/23/07 6:39 PM, Hershel Fisch [EMAIL PROTECTED] wrote: On 4/23/07 8:31 PM, Bill Marriott [EMAIL PROTECTED] wrote: The META tag has a refresh parameter which automatically switches to slide2.html after 5

Was cgi for slide show

2007-04-23 Thread Hershel Fisch
Hi all, This was a post a while ago and I'm trying to figure this out can some one brake this down for me pleease? Thanks, Hershel Jan- I'd probably opt for something even simpler - this will show a slide for five seconds, then move on to the next. No programming needed: html head META

Re: Was cgi for slide show

2007-04-23 Thread Bill Marriott
The META tag has a refresh parameter which automatically switches to slide2.html after 5 seconds. Hi all, This was a post a while ago and I'm trying to figure this out META HTTP-EQUIV=Refresh CONTENT=5;URL=MySlideShow/slide2.html ___

Re: Was cgi for slide show

2007-04-23 Thread Hershel Fisch
On 4/23/07 8:31 PM, Bill Marriott [EMAIL PROTECTED] wrote: The META tag has a refresh parameter which automatically switches to slide2.html after 5 seconds. Thanks, that¹s my question, what is the file slide2.html? Or, folder mySlideShow which contains e.g. 5 .jpg files, for the slide show what

Re: Was cgi for slide show

2007-04-23 Thread Jim Ault
google for META HTTP-EQUIV=Refresh CONTENT= and there are several examples, etc. Jim Ault Las Vegas On 4/23/07 4:48 PM, Hershel Fisch [EMAIL PROTECTED] wrote: Hi all, This was a post a while ago and I'm trying to figure this out can some one brake this down for me pleease? Thanks,

Re: Was cgi for slide show

2007-04-23 Thread Bill Marriott
The html file is a wrapper for the image file. In this technique, each JPG has an associated HTML file. If you have five JPGs, picture1.jpg picture2.jpg picture3.jpg picture4.jpg picture5.jpg then you would create five HTML files... index.html slide2.html slide3.html slide4.html slide5.html

Re: Was cgi for slide show

2007-04-23 Thread Hershel Fisch
On 4/23/07 10:05 PM, Bill Marriott [EMAIL PROTECTED] wrote: Thanks, got it. Hershel The html file is a wrapper for the image file. In this technique, each JPG has an associated HTML file. If you have five JPGs, picture1.jpg picture2.jpg picture3.jpg picture4.jpg picture5.jpg then

Re: Was cgi for slide show

2007-04-23 Thread Jim Ault
On 4/23/07 6:39 PM, Hershel Fisch [EMAIL PROTECTED] wrote: On 4/23/07 8:31 PM, Bill Marriott [EMAIL PROTECTED] wrote: The META tag has a refresh parameter which automatically switches to slide2.html after 5 seconds. Thanks, that¹s my question, what is the file slide2.html? Or, folder

Re: CGI for Slide show

2006-10-25 Thread Marielle Lange
That one is even more impressive: http://prototype-window.xilinus.com/ or check out: http://orangoo.com/labs/GreyBox/ Good libraries for Ajax manipulation are: http://orangoo.com/labs/AmiNation/AJS/ (ultra lightweight JavaScript library) http://jquery.com/ (jquery ) Check out the growing

Re: CGI for Slide show

2006-10-21 Thread Sivakatirswami
OK, that's all very interesting. and I think I understand about half of it. but a) given CPU speeds of web servers are increasing witness: The dual Xeon processor on our managed dedicated server at ServerPath with 100 Megabit dedicated socket for our box, (no other box on our same C class

Re: CGI for Slide show

2006-10-21 Thread Brian Yennie
Sivakatirswami, AJAX vs. iframes really depends a lot on your needs, but besides buzz- word compliance there are some advantages to AJAX: 1) The request is asynchronous, which has the advantages that: a) You can display your own loading messages easily b) You can manage your own

Re: CGI for Slide show

2006-10-21 Thread David Bovill
And as for Flash - you dont need the development environment. You can download one of the various flash files that will play the slide show and just use it - you can even use open source (Lazlo) free server side Flash generation if you really needed to - but for most of your needs Id guess you

Re: CGI for Slide show

2006-10-18 Thread David Bovill
I really think forgetting Java for this is clear. A standard one off flash or AJAX solution with variable data passed to it via a Rev based backed seems solid to me. Of course it could be any programming language not just Rev, but there is absolutely no reason not to use a Rev stack based cgi.

Re: CGI for Slide show

2006-10-17 Thread Sivakatirswami
wrote: Thanks Mark! That's why I wrote it has to be adjusted ;-) Best wishes Viktoras ---Original Message--- From: Mark Wieder Date: 10/12/06 21:02:41 To: How to use Revolution Subject: Re: CGI for Slide show Viktoras- Thursday, October 12, 2006, 2:47:28 AM, you wrote

Re: CGI for Slide show

2006-10-17 Thread Sivakatirswami
David Bovill wrote: Isn't this thread ending up at the solution I posted earlier - ie there are now robust cross platform AJAX libraries for this sort of thing - they look great and they work: Take a look at lightbox: http://www.huddletogether.com/projects/lightbox2/

Re: CGI for Slide show

2006-10-17 Thread Jim Ault
On 10/16/06 11:32 PM, Sivakatirswami [EMAIL PROTECTED] wrote: My main headaches had to do with paths and lineoffset and the fact that the files of a default folder so not necessarily in alpha order by default... anyway... it works. Suggestion for the issue of variable parameters passed to the

Re: CGI for Slide show

2006-10-17 Thread J. Landman Gay
Sivakatirswami wrote: OT: our island was not affected adversely by the earthquake. The news is tending to blow things way out of proportion... Oh, how CNN loves a disaster... but all is well in Hawaii. Thank you very much for posting this. I thought about you immediately after the event

Re: CGI for Slide show

2006-10-17 Thread Sivakatirswami
Oh, yes, this is very interesting indeed: I've just start using stacks on the web instead of plain text CGI's. Your model shows a lot of potential. Given that there are a finite number of UI designs for a slide show that would work in any given web context. (5 to 10 at the most -- variations in

Re: CGI for Slide show

2006-10-16 Thread David Bovill
Isn't this thread ending up at the solution I posted earlier - ie there are now robust cross platform AJAX libraries for this sort of thing - they look great and they work: Take a look at lightbox: http://www.huddletogether.com/projects/lightbox2/ ___

Re: CGI for Slide show

2006-10-12 Thread Viktoras Didziulis
, current version works on MSIE. Viktoras ---Original Message--- From: Sivakatirswami Date: 10/11/06 22:24:35 To: How to use Revolution Subject: CGI for Slide show Has anyone done a CGI that runs a slide show? basically you have a folder of images, user clicks Next or Previous

Re: CGI for Slide show

2006-10-12 Thread Stephen Barncard
The script still has to be adjusted for Non MSIE browsers, current version works on MSIE. Which is exactly why I went to pure HTML at the time (7 years ago). Browser compatibility was even worse then. There is an alternative with javascript using properties of image tag. It can (re)load

Re: CGI for Slide show

2006-10-12 Thread Mark Wieder
Sivakatirswami- Wednesday, October 11, 2006, 10:15:07 PM, you wrote: I've heard iFrame was deprecated, but it works really well. I am also using now an iFrame that calls a Rev CGI which returns a small html chunk. You can also make AJAX calls in your iframe to respond to user mouse clicks,

Re: CGI for Slide show

2006-10-12 Thread Mark Wieder
Viktoras- Thursday, October 12, 2006, 2:47:28 AM, you wrote: This is how your image tag might look like for a slideshow of 15 images: img src=im1.jpg name=thisIm alt=Click to change image galleryimg=no onclick=if (i=15) {i++}; else {i=1}; thisIm.src='im'+i+'.jpg'; The script still has

Re: CGI for Slide show

2006-10-12 Thread Viktoras Didziulis
Thanks Mark! That's why I wrote it has to be adjusted ;-) Best wishes Viktoras ---Original Message--- From: Mark Wieder Date: 10/12/06 21:02:41 To: How to use Revolution Subject: Re: CGI for Slide show Viktoras- Thursday, October 12, 2006, 2:47:28 AM, you wrote

CGI for Slide show

2006-10-11 Thread Sivakatirswami
Has anyone done a CGI that runs a slide show? basically you have a folder of images, user clicks Next or Previous and the CGI drives a new image and text into the same screen. If this could be an embedded object, great, otherwise, a complete web screen built from a template or something... the

Re: CGI for Slide show

2006-10-11 Thread Jan Schenkel
--- Sivakatirswami [EMAIL PROTECTED] wrote: Has anyone done a CGI that runs a slide show? basically you have a folder of images, user clicks Next or Previous and the CGI drives a new image and text into the same screen. If this could be an embedded object, great, otherwise, a complete

Re: CGI for Slide show

2006-10-11 Thread David Bovill
I guess it depends how good you want it to look i the browser. If you want really good results you need to use one of the open source DHTML or Flash based slied shows. You can also use QuickTime and send it XML - not just SMIL. But as far as i know these are not designed out of the box to send

Re: CGI for Slide show

2006-10-11 Thread Mark Wieder
Jan- I'd probably opt for something even simpler - this will show a slide for five seconds, then move on to the next. No programming needed: html head META HTTP-EQUIV=Refresh CONTENT=5;URL=MySlideShow/slide2.html /head body img src=slide1.jpg /body /html -- -Mark Wieder [EMAIL PROTECTED]

Re: CGI for Slide show

2006-10-11 Thread Stephen Barncard
Yes, I used this technique for years with my slide shows for CSN, etc. Works great. No server side stuff at all. I used Hypercard to create the HTML text files to drive this. example: http://barncard.com/gd.html I used this system until Open Source app Gallery got real good. The problem is

Re: CGI for Slide show

2006-10-11 Thread Sivakatirswami
Yes, one wants to avoid thousands of small .html files, maintenance and future change requests would become a nightmare. iView does that and it scares me... I would like to see the data repository be nothing more than. /GreatNewSlideShowFolder/ fooPhoto1.jpg