[google-appengine] Re: using javascript libraries

2008-10-08 Thread Adam
You might not need to upload the library at all. Google provides hosting for some of the most popular: http://code.google.com/apis/ajaxlibs/documentation/ A On Oct 1, 2:18 pm, "Barry Hunter" <[EMAIL PROTECTED]> wrote: > AppEngine can only execute Python Code, so that is all you can upload > (

[google-appengine] Re: using javascript libraries

2008-10-01 Thread Wooble
Javascript doesn't run on the GAE servers so the sandbox is completely irrelevant to it. You can serve, as static files, any javascripts you want; it's up to your user's browser whether to execute it. On Oct 1, 12:33 pm, Terrence Brannon <[EMAIL PROTECTED]> wrote: > The relevant > FAQ:http://co

[google-appengine] Re: using javascript libraries

2008-10-01 Thread Barry Hunter
AppEngine can only execute Python Code, so that is all you can upload (and expect to run) But Javascript is (normally) a client side language, so you can upload a javascript lib to appengine as a static file, which the browser just downloads and runs *itself* On Wed, Oct 1, 2008 at 5:33 PM, Te