[google-appengine] Re: GAE, Django and SSL

2012-05-11 Thread Claude Vedovini
By default you don't have anything to do, just access your site with https instead of http But you can configure how ssl is handled on a per url basis in you app.yaml: https://developers.google.com/appengine/docs/python/config/appconfig#Secure_URLs On May 11, 10:00 pm, João Silva

[google-appengine] Re: Google App Engine facebook community page

2011-04-07 Thread Claude Vedovini
Is that page endorsed by the GAE team? I think it should be clearly stated, on the page info, who manages it! On Apr 7, 10:25 am, mova77 marco.vana...@gmail.com wrote: Hi everybody! I'm happy to announce the brand new Google App Engine community page for facebook addicted dudes! :)

[google-appengine] Re: How to handle form submit with 1 handler only?

2011-01-26 Thread Claude Vedovini
You are right, this is only true of Django queries :) On Jan 23, 6:33 pm, djidjadji djidja...@gmail.com wrote: This is not true. They are equivalent. They modify the query IN-PLACE. They do not return a new one. All the db.Query methods return self. You can choose to chain them all in one

[google-appengine] Re: How to handle form submit with 1 handler only?

2011-01-26 Thread Claude Vedovini
At any point, if you want to know the value of the type variable you need to pass it to your handler You have at least 3 ways of doing so: 1. having a dedicated handler with a dedicated URL 2. passing the variable as a GET parameter (/directorysubmithandler? dir_type=...) 3. passing the variable

[google-appengine] Re: How to handle form submit with 1 handler only?

2011-01-23 Thread Claude Vedovini
to do that you need to have your form action posted to /dir?type=xxx but a better way is to add a hidden field type in the form in the get method and then retrieve it in the post method On Jan 23, 4:10 am, Zeynel azeyn...@gmail.com wrote: On Jan 22, 9:06 pm, Calvin calvin.r...@gmail.com wrote:

[google-appengine] Re: How to handle form submit with 1 handler only?

2011-01-23 Thread Claude Vedovini
= Item.all() items = items.filter(type =, merchandise_type) items = items.order(-points) or the shorter items = Item.all().filter(type =, merchandise_type).order(-points) On Jan 23, 9:12 am, Claude Vedovini cla...@vedovini.net wrote: to do that you need to have your form action posted to /dir?type

[google-appengine] Handling federated login failure

2010-08-04 Thread Claude Vedovini
Hi, I use federated login for one of my app and tested it with several OpenID providers and relaying parties. In some occasions it did not work and the browser simply receives a 204 response code which leaves the browser on the same page with no further indication of failure. Same thing when

[google-appengine] stuck indexes

2010-07-20 Thread Claude Vedovini
Hi, It looks like the indexes for my application (id: fbpagewatch) are stuck. Can someone help with this? Thanks in advance, C. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] Re: stuck indexes

2010-07-20 Thread Claude Vedovini
everything's back to normal, forget it :) On Jul 20, 1:04 pm, Claude Vedovini cla...@vedovini.net wrote: Hi, It looks like the indexes for my application (id: fbpagewatch) are stuck. Can someone help with this? Thanks in advance, C. -- You received this message because you are subscribed

[google-appengine] Re: How to provide different custom domain name to different version of same application

2010-07-04 Thread Claude Vedovini
As far as I know this is not possible. To have a beta or test version of your app it is better to create a new application. It's especially a good practice since otherwise your production and your beta versions are going to share the same datastore which is not a good thing. Depending on changes

[google-appengine] Re: Upcoming maintenance notification

2010-06-30 Thread Claude Vedovini
Same here! On Jun 30, 9:19 pm, johntray john.tur...@gmail.com wrote: I can confirm that the email from the downtime-notify group was indeed routed to my Gmail spam folder. It includes a red-overlay message: Warning: This message may not be from whom it claims to be. Beware of following any

[google-appengine] what happen when federated login fails?

2010-06-21 Thread Claude Vedovini
Hi, I use federated login for one of my app and tested it with several OpenID providers and relaying parties. In some occasions it did not work and the user browser is simply receiving a 204 response code which leaves the browser on the same page (at least on FF) with not indication of failure.

[google-appengine] Re: Cron job on Time???? 2 hours late would be better

2010-06-21 Thread Claude Vedovini
to me it looks like it ran 2sec late, not 2hrs :/ On Jun 21, 6:57 pm, djidjadji djidja...@gmail.com wrote: This was for another job on the same day, and that was on time, sometimes they are a few minutes off but not 2 hours --- every day 00:00 (UTC) 2010/06/21 00:00:00 on

[google-appengine] Re: howto restrict application to serve requests by domain?

2010-01-03 Thread Claude Vedovini
this only works in a server to server case, if you use ajax from the browser then you're stuck. Regards Claude Vedovini --- Software Consulting Development +41 78 617 86 98 http://vedovini.net/ http://twitter.com/cvedovini http://www.dita-op.org/ On Jan 1, 8:25 pm, Andy andywo...@gmail.com wrote: I

[google-appengine] Re: swfupload and authentication cookies

2009-12-14 Thread Claude Vedovini
Hi, An alternative solution would be to generate a one-time temporary url to which swfupload can post the file Regards Claude --- Software Consulting Development +41 78 617 86 98 http://vedovini.net/ http://twitter.com/cvedovini http://www.dita-op.org/ On Dec 13, 11:23 pm, Gijsbert

[google-appengine] Re: Facebook app HTTP-200 but no data

2009-11-05 Thread Claude Vedovini
I have a Facebook application running on GAE and it's working well. Can you post some of your code in the forum? On Nov 5, 7:22 pm, Lynge como...@gmail.com wrote: Hi, I am building a facebook app... or I am trying to. Being unable to make it work with their iframe option I have since

[google-appengine] Re: *newbie alert* really sorry...

2009-10-14 Thread Claude Vedovini
Hi Tony, I don't know Domino stuff but you should first check this: http://docs.djangoproject.com/ Django is the framework of choice for developing with GAE but the datastore model is different so make sure to check those out: http://code.google.com/appengine/articles/django.html Good luck,

[google-appengine] Re: stuck indexes

2009-10-08 Thread Claude Vedovini
Hello Jeff All my indexes have been building since more than 10 hours, I think they are all stuck now. The site has been unavailable for 16 hours now and my client in moaning, can you help again, please? Regards Claude Vedovini --- Software Consulting Development +41 78 617 86 98 http

[google-appengine] Re: stuck indexes

2009-10-08 Thread Claude Vedovini
Hi Nick, thanks, I vacuumed the indexes about 45 minutes ago and they all still are in the Deleting state, is this normal? Claude Vedovini --- Software Consulting Development +41 78 617 86 98 http://vedovini.net/ http://twitter.com/cvedovini http://www.dita-op.org/ 2009/10/8 Nick Johnson

[google-appengine] Google App Engine developers in Switzerland

2009-10-08 Thread Claude Vedovini
Hi group, Are there other GAE developers from Switzerland (especially french-speaking Switzerland) in there? Cheers Claude Vedovini --- Software Consulting Development +41 78 617 86 98 http://vedovini.net/ http://twitter.com/cvedovini http://www.dita-op.org

[google-appengine] Re: stuck indexes

2009-10-08 Thread Claude Vedovini
, particularly if you have many indexes to delete. -Nick On Thu, Oct 8, 2009 at 11:12 AM, Claude Vedovini cla...@vedovini.net wrote: Hi Nick, thanks, I vacuumed the indexes about 45 minutes ago and they all still are in the Deleting state, is this normal? Claude Vedovini --- Software Consulting

[google-appengine] Re: stuck indexes

2009-10-08 Thread Claude Vedovini
Hi Nick, Everything seems to be back to normal now, Thanks, Claude 2009/10/8 Claude Vedovini cla...@vedovini.net: Indexes are gone now... however running appcfg.py update_indexes returned a server error 500 indexes are listed in the console, marked as Building I think we are back

[google-appengine] Re: Getting my app files from the App Engine

2009-10-08 Thread Claude Vedovini
Hi GAE is not really a collaborative development environement, try svn or git :) Cheers On Oct 7, 11:08 pm, Tobias goo...@tobias.baethge.com wrote: Hi, I'm new to app engine and have small question. Today I started by creating an app. I started with adding a few static files/images

[google-appengine] stuck indexes

2009-10-07 Thread Claude Vedovini
Hello, Seems like my app (id: swissmeddev) have 6 stuck indexes, can you help? Thanks, Claude --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] Re: Can't upload indexes and there is no error message why

2009-10-07 Thread Claude Vedovini
I have the same issue since several hours, but still no answers from the group Indexes are stuck, and thus the application is broken. Hope this won't happen once we are in production. 2009/10/7 Natalie Gordon natalie.gor...@gmail.com: I've been getting this for the past 45 minutes when I

[google-appengine] Re: stuck indexes

2009-10-07 Thread Claude Vedovini
have been created (may be some are missing, I did not count) and are building Do you think I might have further problems? Claude Vedovini --- Software Consulting Development +41 78 617 86 98 http://vedovini.net/ http://www.dita-op.org/ 2009/10/7 Jeff S (Google) j...@google.com: Hi Claude