[web2py] Re: Web2py + Google Cloud Endpoints: There is a way to make them work together ?

2015-11-19 Thread Victor
Hello, Carlos. Did you manage to make this working? On Wednesday, October 15, 2014 at 4:51:43 AM UTC+2, Cláudio Bastos wrote: > > Hi, > > i'm struggling to make Web2py and Google Cloud Endpoints work together. > > When I change app.yaml to include : > > > - url: /_ah/spi/.* > script: my_api.app

[web2py] How to install some old version of web2py?

2012-10-27 Thread Victor victor
How to install some old version of web2py? Is there some repository of old web2py versions exists? --

[web2py] Admin page - Installed applications - design

2010-10-13 Thread Victor Varvariuc
All the time i use web2py's admin page for installed applications, i find very unergonomical. I am not a designer, but that's what i came up with: http://img403.imageshack.us/img403/6774/cssy.png You can see on the right the current design, and on the left - suggested by me. The css styles i used:

[web2py:36241] Re: Off-Topic: Question about blog archive links

2009-11-30 Thread Victor
nd tags to add to the keywords meta tag on each post page for SEO. Once again I'm no expert, just a physics student who loves to code python and web2py. But then again Its one of tose questions that make you think. Victor On Nov 30, 3:30 pm, Thadeus Burgess wrote: > I was just curious w

[web2py:36206] GAE models in Web2py

2009-11-30 Thread Victor
Hi Guys, I really appreciate your help in the past. I have a another quick question. Is it possible to use GAE models in model.py and then use SQLFactory to generate and process the forms that are generated. Cheers -- You received this message because you are subscribed to the Google Groups "w

[web2py:36205] Re: Off-Topic: Question about blog archive links

2009-11-30 Thread Victor
IMHO, It's better to use categories because people would generally visit your blog looking for posts on a topic (JQuery, Web2py, Photoshop etc), if you had an "Older/Newer posts" link, then thats fine. On Nov 29, 10:43 am, Thadeus Burgess wrote: > What is the benefit or reason for having date-

[web2py:30714] Re: action based on received email

2009-09-11 Thread Victor
Thanks everyone I guess I'll need to do some email server research then. At least I know what to research. Previously, I didnt know where to start. Thanks Again Victor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[web2py:30554] action based on received email

2009-09-09 Thread Victor
done . I understand that this is not necessarily a web2py question, but I would be grateful to get some directions as to where and how I can get more info. I tried google but I dont even know what phrase to use. Thanks Everyone Victor --~--~-~--~~~---~--~~ You received

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

2009-08-24 Thread Victor
You're welcome. Just doing my part to help the web2py ccommunity :) On Aug 24, 6:03 am, durga moganty wrote: > 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://cod

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

2009-08-23 Thread Victor
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 tables like we do it in > admin app usi

[web2py:29110] Re: Routes in GAE

2009-08-21 Thread Victor
your line should be routes_in = (('.*:/testme','/myapp/default/ index')) dont forget to add an $ at the end if all you want is / testme On Aug 21, 10:41 pm, Prabhu wrote: > Hi, > > Newbie to web2py here. My routes.py reads, > > #!/usr/bin/env python > # -*- coding: utf-8 -*- > > routes_in = (('

[web2py:29109] Re: Routes in GAE

2009-08-21 Thread Victor
I think the routes in should be like a tuple like so (('.*:/ favicon.ico', '/examples/static/favicon.ico')) the ':' separates the host from the rest of the URL .* means from all hosts. So all requests will be considered when re-routing. I might be wrong but hope I helped. I think the problem's

[web2py:27396] auth login on GAE.

2009-07-25 Thread Victor
rigin Policy?), is there any trick that has been utilized or is that just one of those gotchas with the Google App Engine. Thanks Y'all. Victor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users&

[web2py:25914] Re: GAE Recommendation for web2py app - Tutorial Site (wiki/blog) - Google Application Engine

2009-07-07 Thread Victor
On Jul 7, 5:12 pm, Rob McC wrote: > First, web2py looks like an exciting framework, one that I wish to > learn. > > I admire the efforts of Massimo for moving  web2py  forward. It must > require a ton of time. > > I have it working on my Mac, and I am comfortable with getting apps to > GAE. > -

[web2py:24203] Interview?

2009-06-15 Thread Victor
I have just sent an email to Ron Stevens of the python 411 podcast at http://www.awaretek.com/python/ to ask if he would like to do an interview with Massimo. I hope it was a good idea. Victor --~--~-~--~~~---~--~~ You received this message because you are

[web2py:15159] Re: Help with GAE: AppEngine does not index by: text

2009-01-20 Thread Victor Akujobi
Thanks Massimo, Worked like a charm!! On Sun, Jan 18, 2009 at 12:10 AM, mdipierro wrote: > > Thanks Victor. > I think this a GAE issue. Make the field a string instead of text. you > may need to set the max length > > ...db.Field('Tag','string',length=128)