Re: [google-appengine] new to app engine - how to handle control arrays

2010-07-26 Thread Mike Moum
Got it. Need to use request.get_all() On 07/26/2010 04:16 AM, Alon Carmel wrote: first, it depends on how your working with python on app engine. django : self.request.GET/POST['VARNAME'] or django request.GET/POST['VARNAME'] The .POST or .GET are dictionaries of all the passed data. you can

Re: [google-appengine] new to app engine - how to handle control arrays

2010-07-26 Thread Mike Moum
Here's what I'm trying to do: class Process(webapp.RequestHandler): def post(self): self.response.out.write('hello') data = self.request.get('test[]') for d in data: self.response.out.write(d) class MainPage(webapp.RequestHandler): def get(self):

Re: [google-appengine] new to app engine - how to handle control arrays

2010-07-26 Thread Alon Carmel
first, it depends on how your working with python on app engine. django : self.request.GET/POST['VARNAME'] or django request.GET/POST['VARNAME'] The .POST or .GET are dictionaries of all the passed data. you can also access them via .REQUEST. For example: myarray = request.POST['myarray'] for

[google-appengine] new to app engine - how to handle control arrays

2010-07-25 Thread mikemoum
Hi, I'm just getting started with app engine, and am porting a php site I developed as a learning tool. The input form on my page allows one to enter a number of participants in a small school program. As such, some fields are common to many people, such as last name. In my input form, therefore,

[google-appengine] New to app-engine

2009-04-20 Thread vijay
Hi All,I am planning to use gwt + appengine to develop and deploy my website. I am new to both of this though I completed the installation part and getting started tutorial of both of this. It would be great if you people can give me some tips and other things I should be careful about during the d

[google-appengine] New to app engine Help with dev_appserver.py script

2009-01-03 Thread jmac007
I'm running Mac OSX 10.5.5 and i've installed Mac Python 2.5. I followed the install doc and only installed the PythonApplications. Then I create a folder off of my home directory called "helloworld" and I create a file call "helloworld.py". I then create a file called "app.yaml" and save it with