Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

help

 [1/5] from: francois::prowse::alcatel::co::nz at: 24-Oct-2002 15:28


Any Rebol gurus know how I could go to this page.. http://www.telstraclear.co.nz/products/television/saturn-tv/your_tv_guide.cf m And extract a list of whats on each channel for an individual day, range of days or month even. I'm looking into setting up freevo on my linux server, and having a list of whats on would be really handy. Esp if I can export it to xml file....something of which I've been mucking around with lately. Should be quite easy If I can work out how the html works.. Any ideas appreciated. FP

 [2/5] from: james:mustard at: 24-Oct-2002 16:06


Hi Francois, You might also want to try http://ontv.nzoom.com/schedules/0,1588,,00.html as they list more channels (admittedly a bit slower). I've got an old script about somewhere that rebolifies it. IIRC Graham also has a script for this - check his reb site. James.

 [3/5] from: francois:prowse:alcatel at: 24-Oct-2002 16:46


Grahams web site being where??? Looking at that website seems to only list the terestrial stations not sky/saturn? Good to see a few kiwis in here! Cheers Francois

 [4/5] from: anton:lexicon at: 24-Oct-2002 14:02


This might help start you off: page: read http://www.telstraclear.co.nz/products/television/saturn-tv/your_tv_guide.cf m parse page [ to {<form name="tvguide"} some [ thru {option value="} copy n to {"} (?? n) thru ">" copy name to "<" (?? name) ] ] After some work and you get out the information, then you need to http POST your preferred options and read the resulting page. There is a http-post.r script in the script library that I am sure I used successfully before. Then you need to parse that page. Anton.

 [5/5] from: cybarite:sympatico:ca at: 2-Jan-2003 12:33


help