[google-appengine] Re: Please Announce Expected Release Date for Pay-as-you-go

2008-09-20 Thread Damien Hou
I'd also love to know the timeline. Even a preliminary roadmap is better than nothing. On Sat, Sep 20, 2008 at 2:52 PM, martian <[EMAIL PROTECTED]> wrote: > > Hi Google Staff, > > Your AppEngine service is pretty awesome. It is so awesome in fact > that we based an entire business application ar

[google-appengine] default_expiration and expiration (handler specific) not works with SDK

2008-09-20 Thread Sylvain
With the SDK, the "expiration" tag for handler do not work, it works in production. Only the "default_expiration" works with the SDK Another strange this, I've already start a discussion about it, but it seems that randomly "expiration" is used for script handler too. --~--~-~--~~

[google-appengine] Re: javascript in html

2008-09-20 Thread amshuhu
Thanks for accepting my doubt ,i found the solution --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Fwd: New Admin Console Released

2008-09-20 Thread ravinder thakur
my suggestion would be to change this whole CPU scheme. my application is not a high traffic (yet :) ) its only few folks querying it occasionally. My daily CPU usage never goes more than 10 % and yet i get these time out errors since few queries exceed some unknown CPU limits. Whats the point o

[google-appengine] Re: Fwd: New Admin Console Released

2008-09-20 Thread Sylvain
"prev" & "next" at the bottom of the dataviewer has been removed. It was a good idea, iI think. On 18 sep, 19:30, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > Hi, > > This morning we released a new Admin Console which includes a more > descriptive accounting of your application's CPU stats. We

[google-appengine] Re: How do I handle forms with django?

2008-09-20 Thread Peter
Thanks a ton, the different import did the trick. I might give that modelform thing a go too. On Sep 19, 9:44 am, "@@" <[EMAIL PROTECTED]> wrote: > hi you can use ModelForm, is more convenientfrom google.appengine.ext.db > import djangoforms > > class MessageForm(djangoforms.ModelForm):  class M

[google-appengine] Unit test failure with 1.1.3 release

2008-09-20 Thread Jason Etheridge
When I upgraded to 1.1.3 from 1.1.2, my App Engine unit tests (built using the scheme described in another post [1]) started failing with the following stack trace: ... File "C:/Program Files/Google/google_appengine\google\appengine\ext\db \__init__.py", line 617, in put self._populate_intern

[google-appengine] Re: PHP communicate over REST to Google App Engine

2008-09-20 Thread philip
Hi, I don't agree as my needs are a little different. I'm on PHP and Zend Framework and some of my data needs to be able to scale, I don't want the hassle of scaling a typical mysql database. The response time should be less than a few seconds, its good remember, so perhaps 3 seconds on a reques

[google-appengine] Wishlist for App Engine

2008-09-20 Thread Henning
Hi, we are using the App Engine for our application for some time now. I would like to list our most pressing feature wishes for a future version of the App Engine here: 1. Data import / export tool - A simple CSV import/export tool would be sufficient for us, provided it can import and export d

[google-appengine] Delete all data for a kind

2008-09-20 Thread Michael Bailey
I would like to wipe out all data for a specific kind. What is the best way to do this? I wrote a delete script (hack), but since there is so much data is timeout's out after a few hundred records. --~--~-~--~~~---~--~~ You received this message because you are subs

[google-appengine] Re: Wishlist for App Engine

2008-09-20 Thread Andrew Badera
That's what the starrable issues list is for: http://code.google.com/p/googleappengine/issues/list On Sat, Sep 20, 2008 at 1:27 PM, Henning <[EMAIL PROTECTED]>wrote: > > Hi, > > we are using the App Engine for our application for some time now. > I would like to list our most pressing feature w

[google-appengine] Re: Please Announce Expected Release Date for Pay-as-you-go

2008-09-20 Thread Barry Hunter
See this http://groups.google.com/group/google-appengine/msg/4429b58ce3aa3265 On Sat, Sep 20, 2008 at 7:52 AM, martian <[EMAIL PROTECTED]> wrote: > > Hi Google Staff, > > Your AppEngine service is pretty awesome. It is so awesome in fact > that we based an entire business application around it a

[google-appengine] Re: Can amazon web services or any web services be called from google app engine

2008-09-20 Thread pacific
@Waldemar Thanks man , i think using Boto will be the right approach. @Dale I was looking for a SOAP tool kit because I am well versed with it , anyways thanks a ton man for that piece of code , i can now implement RESt apis if not SOAP, and if i find some SOAP toolkit i ll let you know Anyways

[google-appengine] Re: Problem with my (probably) poorly written function, CheckToken()

2008-09-20 Thread Sam G
No ideas, from anyone? Sam On Sep 18, 10:09 pm, Sam G <[EMAIL PROTECTED]> wrote: > Hello (again), > > I'm running into a problem that I would think would be easy to solve. > I've set up a system to send a given user to an AuthSub token request > URL on first login. After first login, there shoul

[google-appengine] Re: urlfetch problem

2008-09-20 Thread uo
how can i remove the status info ie Status: 200 OK Last-Modified: Sat, 20 Sep 2008 03:47:52 GMT ETag: e608d454f548741614b550558645b689 Content-Type: text/html; charset=utf-8 Expires: Sat, 20 Sep 2008 03:47:51 GMT Cache-Control: max-age=0 from my response object after doing a urlfetch.fetch(u

[google-appengine] A server error has occured.

2008-09-20 Thread Michael Bailey
http://appengine.google.com/datastore/explorer?app_id=amexlabs-bpm&kind=Keyword&viewby=kind&query=&limit=20&offset=20 Going to this url I get: Server Error A server error has occured. Any thoughts from the app-engine team? --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: urlfetch problem

2008-09-20 Thread Alexander Kojevnikov
I just tried this in http://shell.appspot.com/ : >>> from google.appengine.api import urlfetch >>> r = urlfetch.fetch('http://www.muspy.com') >>> print r.content http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> As you can see, no headers are present in the content. Which URL are y

[google-appengine] Re: Problem with my (probably) poorly written function, CheckToken()

2008-09-20 Thread Alexander Kojevnikov
fetch() returns a list which is empty if no entities match the query. In your code, "result is not None" is always True. You can rewrite it like this: def index(request): token = token.find_token(user) if token: return HttpResponsePermanentRedirect('/home') else: retu

[google-appengine] Help with DateTimeProperty datastore stuff

2008-09-20 Thread Sam G
Hello (again), I'm a bit mystified about the db.DateTimeProperty. In the Datastore API's Types and Properties documentation, it lists the Python object type as datetime.datetime. However, when I try to convert this datetime.datetime object to a string, I get a "argument must be 9-item sequence,

[google-appengine] Re: Help with DateTimeProperty datastore stuff

2008-09-20 Thread Alexander Kojevnikov
Try this: message.timestamp = message.created.strftime("%I:%M %p") You are confusing time.strftime() with datetime.datetime.strftime() On Sep 21, 4:13 pm, Sam G <[EMAIL PROTECTED]> wrote: > Hello (again), > > I'm a bit mystified about the db.DateTimeProperty. In the Datastore > API's Types

[google-appengine] Re: A server error has occured.

2008-09-20 Thread Sylvain
Check this : http://code.google.com/p/googleappengine/issues/detail?id=384 On 21 sep, 01:24, Michael Bailey <[EMAIL PROTECTED]> wrote: > http://appengine.google.com/datastore/explorer?app_id=amexlabs-bpm&ki... > > Going to this url I get: > > Server Error > > A server error has occured. > > Any t