[web2py:29203] Re: how do I upload data to GAE database tables

2009-08-23 Thread durga moganty
thanks victor, On Mon, Aug 24, 2009 at 7:00 AM, Victor wrote: > > I dunno, but this might be what you're looking for. > http://code.google.com/appengine/docs/python/tools/uploadingdata.html > Cheers > Victor > > On Aug 21, 8:53 am, durga wrote: > > how do I upload default data to GAE database

[web2py:28916] Re: download problem of web2py_src.zip from web2py.com site. are there any other mirrors to download..?

2009-08-18 Thread durga moganty
today its working fine..i could download new version On Tue, Aug 18, 2009 at 2:58 PM, mdipierro wrote: > > I am trying form Italy and I have no problem. I don't think the > problem is with the web2py server or network. > > On Aug 18, 3:37 am, durga moganty > wro

[web2py:28882] Re: download problem of web2py_src.zip from web2py.com site. are there any other mirrors to download..?

2009-08-18 Thread durga moganty
its not working... access to website http://www.web2py.com/ is very slow. can someone try from different location. On Tue, Aug 18, 2009 at 12:56 PM, mdipierro wrote: > > can you try again, works for me. > > On Aug 18, 1:10 am, durga wrote: > > cannot download from > http://www.web2py.com/ex

[web2py:23194] Re: inserting values in to db fields which are not there in SQLFORM

2009-06-03 Thread durga moganty
thanks lado its working :) On Wed, Jun 3, 2009 at 5:38 PM, Mladen Milankovic wrote: > > Hi. > > Do something like this: > form = SQLFORM(db(db.company),fields = > ['compname','designation','location']) > if form.accepts(request.vars, session): >db(db.company.id == form.vars.id).update(user

[web2py:23171] Re: why id field is displaying in the form?

2009-06-02 Thread durga moganty
thanks mmlado :) On Wed, Jun 3, 2009 at 12:21 PM, Mladen Milankovic wrote: > > Hi. > > There's a parameter to SQLFORM, showid which is True by default. Just set > it > to False. > Like: > form = SQLFORM(db.users,user,fields=['firstname','lastname'], showid = > False) > > regards > mmlado > > > O

[web2py:23167] Re: how to generate combobox for a sqlfield

2009-06-02 Thread durga moganty
thanks guys...its working :) On Tue, Jun 2, 2009 at 7:59 PM, mdipierro wrote: > > or > > db.Field('gender', requires = IS_IN_SET( > ['male', 'female'],['Handsome man','Pretty woman'])) > > to preserve order. > > Notice that 'gender' is more appropriate than 'sex'. > > Massimo > > On Ju

[web2py:22869] Re: how to send xml data to client

2009-05-28 Thread durga moganty
first one. def mycontroller(): xml="World" response.headers['Content-Type']='text/xml' return xml i ll parse the xml data at client side. On Fri, May 29, 2009 at 11:15 AM, mdipierro wrote: > > Do you mean you want to return it as in > > def mycontroller(): >xml="World" >respon