[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 victor.akuj...@gmail.com 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 durgaprasadmoga...@gmail.com wrote

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

2009-08-21 Thread durga
how do I upload default data to GAE database tables like we do it in admin app using CSV file --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups web2py-users group. To post to this group, send email to

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

2009-08-18 Thread durga
cannot download from http://www.web2py.com/examples/static/web2py_src.zip --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups web2py-users group. To post to this group, send email to web2py@googlegroups.com To

[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 mdipie...@cs.depaul.edu wrote: can you try again, works for me. On Aug 18, 1:10 am, durga durgaprasadmoga...@gmail.com wrote

[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 mdipie...@cs.depaul.edu 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 durgaprasadmoga

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

2009-06-03 Thread durga
['firstname','lastname']. how to avoid this user.id from the form. output in browser: Id: 1 First Name: durga Last Name: prasad thanks durga --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

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

2009-06-03 Thread durga moganty
On Wednesday 03 June 2009 08:32:16 durga wrote: Hi , I have created a table for user. to update the table i have written the code def editprofile(): user = db(db.users.id==session.userid).select()[0] form = SQLFORM(db.users,user,fields=['firstname','lastname']) i found

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

2009-06-03 Thread durga
as session.userid in this case user can enter 3 fields through form but i want userid also to be updated at the same time in to company table. can some one help me how to update all 4 fields at a time. thanks durga --~--~-~--~~~---~--~~ You received this message

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

2009-06-03 Thread durga moganty
).update(userid = session.userid) # do something else like redirect if needed The id of the new record can be found in form.vars.id after it was inserted. This way you'll update the new record after it was inserted. regards mmlado On Wednesday 03 June 2009 13:42:34 durga wrote: hi, i

[web2py:23198] Re: date field error

2009-06-03 Thread durga
=IS_DATE()), regards mmlado On Wed, Jun 3, 2009 at 4:36 PM, durga durgaprasadmoga...@gmail.com wrote: Hi, i have defined a date field in my table. db.define_table('users',                      SQLField('dob',requires=IS_DATE()), when i click on db.users in database administration

[web2py:23106] how to generate combobox for a sqlfield

2009-06-02 Thread durga
hi I would like create a form through SQLFORM in which one of my field to be generated as combo box. for example i have options male/female for a sex field. How do i write code for this. db.define_table('users', SQLField('sex',requires=[IS_IN_SET (['male','female'])]) thanks

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

2009-06-02 Thread durga moganty
. use: db.define_table('user', db.Field('sex', requires = IS_IN_SET(['male', 'female']))) regards mmlado On Tuesday 02 June 2009 13:39:35 durga wrote: hi I would like create a form through SQLFORM in which one of my field to be generated as combo box

[web2py:22864] how to send xml data to client

2009-05-28 Thread durga
i have xml data framed in my controller. now i would like to send it as response to client without using view. can someone please let me know how to do it. thanks durga --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

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

2009-05-28 Thread durga moganty
(to='...',message=xml) return done On May 29, 12:17 am, durga durgaprasadmoga...@gmail.com wrote: i have xml data framed in my controller. now i would like to send it as response to client without using view. can someone please let me know how to do it. thanks durga

[web2py:22201] can I use source code of apps from web2py appliances

2009-05-20 Thread durga
Hi all, I am new to web2py and decided to use web2py to construct my website. website contains some of the features similar to apps available in web2py appliances. can I use/refer source code of apps from web2py appliances? thanks in advance

[web2py:22143] cannot open page

2009-05-19 Thread durga
')) ### with out this code it was working fine. now the browser showing The page cannot be displayed. may i know why it is not redirecting to 'index' ? is there anything wrong in my code? thanks durga --~--~-~--~~~---~--~~ You received

[web2py:21857] how to deploy web2py app with lighttpd server on windows xp

2009-05-14 Thread durga
hi all, I have downloaded web2py_win and lighttpd(windows ver) on my windows machine. configured as below but still its not working can somebody help me in web2py app deployment web2py at C:\Apps\web2py_win\web2py lighttpd at C:\apps\LightTPD in lighttpd i have configured server.modules