[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 joao.andre.almeida.si...@gmail.com
wrote:
 Hi,

 I know that GAE provides SSL traffic through appspot.com domains. But there
 aren't code examples that use django.
 My app.yaml is:

 application: my_app
 version: 1
 runtime: python27
 api_version: 1
 threadsafe: true

 libraries:
 - name: django
   version: 1.3

 builtins:
 - django_wsgi: on

 Does anyone knows what do I have to do to use SSL in GAE with Django?

 Thanks in advance.

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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! :)

 http://on.fb.me/fb-gae

 Enjoy it!
 mova77

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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 line or in separate lines.
 No need to assign to the items variable after the create call [ Item.all() ].

 2011/1/23 ClaudeVedovinicla...@vedovini.net:







  I also noticed that your code to retrieve the records from the DB is
  wrong, this won't work as you expect:

  items = Item.all()
  items.filter(type =, merchandise_type)
  items.order(-points)

  because filter and order methods do not modify the query, they return
  a new one, so your code be:

  items = Item.all()
  items = items.filter(type =, merchandise_type)
  items = items.order(-points)

  or the shorter

  items = Item.all().filter(type =, merchandise_type).order(-points)

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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 as a POST parameter (adding input
type=hidden name=dir_type value=... inside your form)

to do 2 and 3 you just need to change the output of the handle that
returns the form's page


On Jan 23, 11:02 pm, Zeynel azeyn...@gmail.com wrote:
 On Jan 23, 3:12 am, ClaudeVedovinicla...@vedovini.net wrote:

  to do that you need to have your form action posted to /dir?type=xxx

 I have

 action=/directorysubmithandler

 I don't understand why form handler needs to be the final url. Can you
 explain.

  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

 I've been trying to do this all day yesterday with no success. Both
 Directory and DirectorySubmitHandler are herehttp://pastebin.com/wG7BNZ5m

 I would appreciate it if you could explain how this is done without
 using templates.

 Thanks!

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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:

  First thing: there shouldn't be an else: at the top of this code.  def get()
  and def post() are two separate methods of the DirectoryHandler class.

 Thanks! I fixed that and now post writes to the database but I still
 cannot get the url parameter saved in get into post? Any suggestions
 about how to do this? The code is herehttp://pastebin.com/QkQt874J

 Thanks for your help.

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



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

2011-01-23 Thread Claude Vedovini
I also noticed that your code to retrieve the records from the DB is
wrong, this won't work as you expect:

items = Item.all()
items.filter(type =, merchandise_type)
items.order(-points)

because filter and order methods do not modify the query, they return
a new one, so your code be:

items = 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=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:

   First thing: there shouldn't be an else: at the top of this code.  def 
   get()
   and def post() are two separate methods of the DirectoryHandler class.

  Thanks! I fixed that and now post writes to the database but I still
  cannot get the url parameter saved in get into post? Any suggestions
  about how to do this? The code is herehttp://pastebin.com/QkQt874J

  Thanks for your help.

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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 entering an invalid OpenID url.

How should I do to provide my visitors with some indication of
failure?
Thanks,
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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 to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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 you made to your beta they will apply to the
prod's data which might not be able to handle them.
Plus if you do testing with your beta you'll need test datasets and
you don't want to mess with your prod

HTH


On Jul 3, 4:02 pm, Gaurav testmail.testu...@gmail.com wrote:
 Hello,

 I am developing my application on GoogleAppEngine  I want to know
 that how can I provide different domain names to different version of
 an application.

 Suppost my application is  app1  having two versions 1 (Default)
 and beta.Now these version can be accessible as :

 version 1  of app1 at :  http://app1.appspot.com
 version beta  of app1 at :  http://beta.latest.app1.appspot.com

 I want to associate these with my custom domain mydomain.com, such
 that :
             version 1  of app1 at :  http://mydomain.com
             version beta  of app1 at :  http://beta.mydomain.com

 I am able to make first association i.ehttp://mydomain.comfor
 version 1 but don't know how to associate http://beta.mydomain.com;
 with beta version...

 So please tell me how can I associate different subdomain with
 different versions of same application and Even is it possible or
 not...??

 I will be very great full for any guidance as I have already googled a
 lot but not found any relevant detail so far and stucked at this
 point...

 Thanks.

-- 
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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 links in it or of providing the sender with any personal
 information. There is also a link to Learn more  which points 
 tohttp://mail.google.com/support/bin/answer.py?hl=enctx=mailanswer=8253.

 Thanks for posting here, as I would have completely missed it

 On Jun 30, 2:51 pm, Ikai L (Google) ika...@google.com wrote:

  Hey guys,

  I just wanted to point out there are upcoming maintenance periods scheduled
  for July 7th and July 14th at 5pm Pacific. More details here:

 http://groups.google.com/group/google-appengine-downtime-notify/brows...

  Normally, I wouldn't post these notifications to this group, as they belong
  in the downtime notify group, however, users are reporting that this
  message went into their spam folder. Can anyone verify this, or let me know
  in this thread if this message was correctly delivered?

  If you want to be notified of upcoming maintenance periods, make sure to
  join this group:

 http://groups.google.com/group/google-appengine-downtime-notify

  We're doing our best to minimize these periods in the future, but there are
  times when these periods will be absolutely necessary.

  --
  Ikai Lan
  Developer Programs Engineer, Google App Engine
  Blog:http://googleappengine.blogspot.com
  Twitter:http://twitter.com/app_engine
  Reddit:http://www.reddit.com/r/appengine

-- 
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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.
Same thing when entering an invalid OpenID url.

How should I do to provide my visitors with some indication of
failure?
Thanks,
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[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 time Success
 ---

 2010/6/21 Blixt andreasbl...@gmail.com:



  It's probably a bug where the success time is being displayed in CEST
  (+2). The job was probably performed on time. Either that, or it was
  performed 2 hours too late because it reads the configuration wrong.
  In the second case you could easily fix it by changing it to 22:02.

  On Jun 21, 6:13 pm, djidjadji djidja...@gmail.com wrote:
  The following shows in my cron job page for a specific job that needs
  to be done once a day
  ---
  every day 00:02 (UTC)
  2010/06/21 00:02:02 on time Success
  ---

  It was exactly 02:00 late and it still calls it on time??

  --
  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-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-appengine+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-appengine?hl=en.

-- 
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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



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

2010-01-03 Thread Claude Vedovini
Hi Andy,
I would say the best to do this is to use some sort of authentication.
Your calling application could authenticate its requests by passing
the hash of a token mixing a secret, a timestamp and the request
itself, the answering application need then to validate this token.
Of course 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 want to develop a GAE application that only services requests from
 mydomain.com.  Is there a configuration setting for this, or a simple
 idiom I can use in my request handlers?

 This is for a python application on GAE to only be used as a service
 for another GAE application.

 Thanks,
 Andy

--

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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.




[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 gijsbert.de.h...@gmail.com wrote:
 Hi,
 I'm using swfupload (a flash base uploader) to upload files. It's nice
 because it can limit the upload file size, very handy for app engine,
 and also supports upload progress.
 But, the flash upload request does not send the authentication
 cookies, so the handler is not authenticated. swfupload has an option
 to send cookies as post data, but I can't figured out how to have that
 data interpreted by the users module (google accounts) or if that is
 even possible.
 So my question:
 - is there a way to 'initialize' the authenticated google account user
 from something other than the cookie?
 Alternatively, is it possible to possible to check the upload file
 size from javascript?
 Thanks!
 Gijsbert

--

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-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.




[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
 followed this 
 guide:http://dollarmani-facebook.blogspot.com/2008/09/facebook-applications...

 To do it in FBML.
 Should anyone not know this, then the FBML approach requires GAE to
 accept the POST request from the facebook servers and send a response.

 It just isn't working. Facebook tells me that GAE has responded with
 HTTP-200, but with no data.

 If I change the method to get instead of post and view it in a
 browser, then it returns content just fine.
 And if I leave it on get and try to use it via facebook, I get a 405.
 Just as I expected.

 No errors relating to this is showing op in my logs on the dashboard
 and it works just fine on the dev-server. Unfortunately I cannot test
 it via facebook using the dev-server and I have no idea how to fake
 the facebook post request.

 So it is in utter desperation that I am writing this. Someone please
 point to some kind of testing-tool or tell me if this approach no
 longer is possible on GAE.

 Many thanks in advance
--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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,
Claude



On Oct 14, 2:08 pm, Tony B tony.ben...@gmail.com wrote:
 but I am trying to get my head round the Google Apps Engine.

 I am not a developer in anyway shape or form, but for my sins, what I
 do understand is developing Domino applications, so I am trying to
 understand the whole GAE process in that context.

 Could someone fill in the blanks/confirm my understanding?

 NSF = Google datastore?
 Domino Form = how end users input information into NSF but what is the
 GAE equivalent?  Is it just as simple as a html form?
 Domino View = how to render that imputted data in a sensible manner
 back to the user accessing the NSF. And again what is the GAE
 equivalent?
 agents = little programs that can manuipulate the data, alert when
 conditions are meet etc.  This bit is is a bit more straightforward to
 me - scheduled scripts that check, amend, alert as appropriate.
 scripts in domino are written with Formular language, lotusscript etc
 - this is replaced by python in GAE?
 Access control - can be governed as part of the google apps account
 where necessary.

 As a real world example,  if I create a holiday request application in
 domino, I would create a new database, have a form which users would
 fill in stating name and dates requested, on saving this form, a
 notification would be generated to the manager in question, the
 manager would then go the request, authorize/deny the holiday, mark
 the request as complete and a notification of authorization/rejection
 sent back to the requestor.

 Essentially if you can help me get my head round the GAE equals I'd be
 very grateful

 thanks
 Tony
--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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://vedovini.net/
http://twitter.com/cvedovini
http://www.dita-op.org/



2009/10/7 Jeff S (Google) j...@google.com:

 Hi Claude,

 It looks like the index count had become incorrect which is a known
 issue, I've reset the count and moved these indexes into the Error
 state so that they can be vacuumed. Apologies for the inconvenience.

 Thank you,

 Jeff

 On Oct 7, 1:35 am, Claude Vedovini cla...@vedovini.net wrote:
 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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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) nick.john...@google.com:
 Hi Claude,
 I've reset your index count and moved the indexes to error state. You can
 try again now.
 -Nick Johnson

 On Thu, Oct 8, 2009 at 9:28 AM, Claude Vedovini cla...@vedovini.net wrote:

 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://vedovini.net/
 http://twitter.com/cvedovini
 http://www.dita-op.org/



 2009/10/7 Jeff S (Google) j...@google.com:
 
  Hi Claude,
 
  It looks like the index count had become incorrect which is a known
  issue, I've reset the count and moved these indexes into the Error
  state so that they can be vacuumed. Apologies for the inconvenience.
 
  Thank you,
 
  Jeff
 
  On Oct 7, 1:35 am, Claude Vedovini cla...@vedovini.net wrote:
  Hello,
 
  Seems like my app (id: swissmeddev) have 6 stuck indexes, can you
  help?
 
  Thanks,
  Claude
  
 





 --
 Nick Johnson, Developer Programs Engineer, App Engine
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
 368047

 


--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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/

--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: stuck indexes

2009-10-08 Thread Claude Vedovini

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 into troubles...




2009/10/8 Nick Johnson (Google) nick.john...@google.com:
 Hi Claude,
 Deleting may take a while, 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  Development
 +41 78 617 86 98
 http://vedovini.net/
 http://twitter.com/cvedovini
 http://www.dita-op.org/



 2009/10/8 Nick Johnson (Google) nick.john...@google.com:
  Hi Claude,
  I've reset your index count and moved the indexes to error state. You
  can
  try again now.
  -Nick Johnson
 
  On Thu, Oct 8, 2009 at 9:28 AM, Claude Vedovini cla...@vedovini.net
  wrote:
 
  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://vedovini.net/
  http://twitter.com/cvedovini
  http://www.dita-op.org/
 
 
 
  2009/10/7 Jeff S (Google) j...@google.com:
  
   Hi Claude,
  
   It looks like the index count had become incorrect which is a known
   issue, I've reset the count and moved these indexes into the Error
   state so that they can be vacuumed. Apologies for the inconvenience.
  
   Thank you,
  
   Jeff
  
   On Oct 7, 1:35 am, Claude Vedovini cla...@vedovini.net wrote:
   Hello,
  
   Seems like my app (id: swissmeddev) have 6 stuck indexes, can you
   help?
  
   Thanks,
   Claude
   
  
 
 
 
 
 
  --
  Nick Johnson, Developer Programs Engineer, App Engine
  Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration
  Number:
  368047
 
  
 





 --
 Nick Johnson, Developer Programs Engineer, App Engine
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
 368047

 


--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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 into troubles...




 2009/10/8 Nick Johnson (Google) nick.john...@google.com:
 Hi Claude,
 Deleting may take a while, 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  Development
 +41 78 617 86 98
 http://vedovini.net/
 http://twitter.com/cvedovini
 http://www.dita-op.org/



 2009/10/8 Nick Johnson (Google) nick.john...@google.com:
  Hi Claude,
  I've reset your index count and moved the indexes to error state. You
  can
  try again now.
  -Nick Johnson
 
  On Thu, Oct 8, 2009 at 9:28 AM, Claude Vedovini cla...@vedovini.net
  wrote:
 
  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://vedovini.net/
  http://twitter.com/cvedovini
  http://www.dita-op.org/
 
 
 
  2009/10/7 Jeff S (Google) j...@google.com:
  
   Hi Claude,
  
   It looks like the index count had become incorrect which is a known
   issue, I've reset the count and moved these indexes into the Error
   state so that they can be vacuumed. Apologies for the inconvenience.
  
   Thank you,
  
   Jeff
  
   On Oct 7, 1:35 am, Claude Vedovini cla...@vedovini.net wrote:
   Hello,
  
   Seems like my app (id: swissmeddev) have 6 stuck indexes, can you
   help?
  
   Thanks,
   Claude
   
  
 
 
 
 
 
  --
  Nick Johnson, Developer Programs Engineer, App Engine
  Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration
  Number:
  368047
 
  
 





 --
 Nick Johnson, Developer Programs Engineer, App Engine
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
 368047

 



--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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 (with the help of a small tutorial on the web). I can
 successfully push my folder (i.e. the app) to the server and
 successfully view the images/static files at their corresponding
 addresses.

 Now I saw that it is possible to have a second developer adding
 something to the online app. Or suppose I somehow lose my local
 environment/app, i.e. because my harddrive crashes.

 How can I get the data from my app back in those cases? I'm not
 talking about objects in the datastore/Bigtable, but the actual files/
 images/scripts/css/whatever.

 Thanks a lot!
 Tobias
--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[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 update my
 indexes. Is there something up?

 Uploading index definitions.
 Error 500: --- begin server output ---

 Server Error (500)
 A server error has occurred.
 --- end server output ---

 Thanks,
 Natalie Gordon
 www.lenguajero.com

 


--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: stuck indexes

2009-10-07 Thread Claude Vedovini

Thanks a lot Jeff,

I have been able to vacuum all my indexes but when I recreated them I
got the following error:

Uploading index definitions.
Error 500: --- begin server output ---

Server Error (500)
A server error has occurred.
--- end server output ---


However it seems like the indexes 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,

 It looks like the index count had become incorrect which is a known
 issue, I've reset the count and moved these indexes into the Error
 state so that they can be vacuumed. Apologies for the inconvenience.

 Thank you,

 Jeff

 On Oct 7, 1:35 am, Claude Vedovini cla...@vedovini.net wrote:
 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@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---