[web2py:28983] www.web2py.com is down

2009-08-20 Thread Prabhu
http://imgur.com/B5Z0R.jpg --~--~-~--~~~---~--~~ 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 unsubscribe from this group, send email to web2py+unsu

[web2py:29108] Routes in GAE

2009-08-21 Thread Prabhu
Hi, Newbie to web2py here. My routes.py reads, #!/usr/bin/env python # -*- coding: utf-8 -*- routes_in = (('/testme','/myapp/default/index'),) routes_out = (('/myapp/default/index', '/test'),) http://127.0.0.1:8000/testme works. When I upload web2py to GAE, I get the following error Your rou

[web2py:29118] Re: Routes in GAE

2009-08-22 Thread Prabhu
fault/$a', '/cc/$a')) in routes.py, I still get the syntax error. Why am I not able to specify both? This looks like a very dumb mistake I am making. Any ideas? Prabhu On Aug 22, 9:02 am, Yarko Tymciurak wrote: > you might find this discussiont helpful: > > http://groups

[web2py:29144] Re: Routes in GAE

2009-08-23 Thread Prabhu
from rewrite import error_message_custom File "/base/data/home/apps/myapp/1.335820055527865939/gluon/ rewrite.py", line 31, in raise e : invalid syntax (, line 1) Any help is appreciated. Thanks. Prabhu On Aug 23, 6:46 pm, mdipierro wrote: > routes_in = (('/cc/$a',&#

[web2py:29180] Re: Routes in GAE

2009-08-23 Thread Prabhu
e. Try delete the file and rewrite it. If it still does not > work, email me your routes.py > > On Aug 23, 6:35 am, Prabhu wrote: > > > Massimo, Thanks for the reply. > > > Even after adding the commas, I get the same error. > > > If I say, > > > routes_out

[web2py] web2py view to controller value passing and vice versa

2013-05-29 Thread Richard Prabhu
Hello, Am new to web2py and have developed an applications using crawling.my doubt is in onclick() i have written like onclick='ajax("{{=URL('default', 'test', args=[textname[i], '2', 'tamil'])}}",[], ":eval");' in the controller : if (request.args[2]=="tamil"): if (int(request.a

[web2py] web2py view controller value passing

2013-05-29 Thread Richard Prabhu
Can you help me in passing the values from view in web2py to the controller function.The value returned from controller unction should be passed again to the same view.I will use that value in my views. Here is my view: onclick='ajax("{{=URL('default', 'test', args=[textname[i], '1', 'english

[web2py] Re: web2py view to controller value passing and vice versa

2013-05-29 Thread Richard Prabhu
hello anthony, i have a doubt in web2py. I am developing an application using web2py. In my view i have an onclick event which is using an ajax function to send the data to the controller and the controller will process the value and send back the data to view.How to get the value in view i wan