Re: AJAX/Google Pages

2006-06-17 Thread Mike Schilli
On Fri, 16 Jun 2006, Andy Lester wrote: > 1) Write a JavaScript engine. No need to re-invent [1] and [2]. [1] http://search.cpan.org/perldoc?JavaScript%3A%3ASpiderMonkey [2] http://www.mozilla.org/js/spidermonkey/ > 2) Write a DOM doodad. That's the big one. And don't forget that this is just

Re: AJAX/Google Pages

2006-06-16 Thread Andy Lester
On Jun 16, 2006, at 6:47 PM, Ryan Perry wrote: We need a Javascript + DOM implementation on top of Mechanize! I strongly agree. It's the future and we need to be there. How would one go about this? I'd be happy to contribute. Where do I start? 1) Write a JavaScript engine. 2) Write

Re: AJAX/Google Pages

2006-06-16 Thread David Schmidt
Ryan Perry wrote: On Jun 16, 2006, at 2:38 PM, Peter Stevens wrote: Yes and no. AJAX is pretty heavily into Java script - you'll be spending a lot of time with Tamper Data to figure out what data is being sent back and forth. You can look at and reverse engineer the java script. Can it be

Re: AJAX/Google Pages

2006-06-16 Thread Ryan Perry
On Jun 16, 2006, at 2:38 PM, Peter Stevens wrote: Yes and no. AJAX is pretty heavily into Java script - you'll be spending a lot of time with Tamper Data to figure out what data is being sent back and forth. You can look at and reverse engineer the java script. Can it be done? Certainly.

Re: AJAX/Google Pages

2006-06-16 Thread Peter Stevens
The impossible we do immediately. That which is trully diffucult, takes a wee bit longer ;-) Andy Lester wrote: On Jun 16, 2006, at 2:38 PM, Peter Stevens wrote: We need a Javascript + DOM implementation on top of Mechanize! Patches welcome, my brother. Patches welcome. -- Andy Lester

Re: AJAX/Google Pages

2006-06-16 Thread Andy Lester
On Jun 16, 2006, at 2:38 PM, Peter Stevens wrote: We need a Javascript + DOM implementation on top of Mechanize! Patches welcome, my brother. Patches welcome. -- Andy Lester => [EMAIL PROTECTED] => www.petdance.com => AIM:petdance

Re: AJAX/Google Pages

2006-06-16 Thread Peter Stevens
Yes and no. AJAX is pretty heavily into Java script - you'll be spending a lot of time with Tamper Data to figure out what data is being sent back and forth. You can look at and reverse engineer the java script. Can it be done? Certainly. Is it easy? No. Is it practical? Well that depends on t

Re: AJAX/Google Pages

2006-06-16 Thread Ryan Perry
But not for Google Pages. I'd like to run this by this list: What about using libjs from Mozilla along side LWP, then is it possible? Or is that going to be a headache? Thanks for your advice! Ryan On 6/16/06, Andrew Johnson <[EMAIL PROTECTED]> wrote: There is are Google APIs: http://co

RE: AJAX/Google Pages

2006-06-16 Thread Andrew Johnson
There is are Google APIs: http://code.google.com/ -Original Message- From: Ryan Perry [mailto:[EMAIL PROTECTED] Sent: Fri 6/16/2006 3:13 PM To: libwww@perl.org Subject: AJAX/Google Pages I want to access Google Pages. Since there is no native API I thought I could use LWP. Can I

Re: AJAX/Google Pages

2006-06-16 Thread Andy Lester
On Jun 16, 2006, at 2:13 PM, Ryan Perry wrote: I want to access Google Pages. Since there is no native API I thought I could use LWP. Can I since the site is AJAX based? No. -- Andy Lester => [EMAIL PROTECTED] => www.petdance.com => AIM:petdance

AJAX/Google Pages

2006-06-16 Thread Ryan Perry
I want to access Google Pages. Since there is no native API I thought I could use LWP. Can I since the site is AJAX based? Thanks!