[google-appengine] How to deal with the _ToDatastoreError(err) problem?

2010-02-01 Thread lookon
I meet this problem regularly. Anyone has an idea about this problem? 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

[google-appengine] Re: How to deal with the _ToDatastoreError(err) problem?

2010-02-01 Thread lookon
Thanks:-) Have a try. On Feb 2, 3:18 pm, Flips wrote: > You have to retry your operations. Take a look at this > ->http://appengine-cookbook.appspot.com/recipe/autoretry-datastore-time... > > On Feb 2, 6:10 am, lookon wrote: > > > I meet this problem regularly. Anyon

[google-appengine] How Google calculate datastore usage?

2010-02-01 Thread lookon
Here is my app: http://reader2twitter.appspot.com In the Dashboard, I see Total Stored Data : 0.70 of 1.00 GBytes. But in the Datastore Statistics, I see Size of all entities : 159 MBytes. I am confused. Can you give me some help? Thanks. -- You received this message because you are subscribed

[google-appengine] Re: How Google calculate datastore usage?

2010-02-02 Thread lookon
e.com/group/google-appengine/browse_thread/thread/... > > When did you notice the quota increasing? > > On Feb 2, 8:55 am, lookon wrote: > > > Here is my app:http://reader2twitter.appspot.com > > > In the Dashboard, I see Total Stored Data : 0.70 of 1.00 GBytes. >

[google-appengine] about clearing the datastore

2010-02-12 Thread lookon
My total datastore has been reached 77% and I'd like to clear some old data. How can I remove a whole Model in GAE? And how can I delete huge amount of data? I'm now using the task queue to delete. Wish someone can give me some better way. Thanks. -- You received this message because you are sub

[google-appengine] Re: PermanentTaskFailure exception with defer

2010-02-17 Thread lookon
I have the same problem... I use template in my app and simplejson in django.utils. I put them all at the top. But I still get the error. It works fine on my dev env. On Dec 3 2009, 6:50 pm, "Nick Johnson (Google)" wrote: > Hi gadgster, > > This happens when a deferred task is the first request

[google-appengine] Re: Timeouts have increased since maintenance on August 18th ?

2009-08-28 Thread lookon
I've seen a lot of timeouts today On Aug 28, 11:10 pm, Joe Bowman wrote: > For the past couple of days I've been seeing lots of datastore > timeouts. The confusing thing is it seems to be application specific, > as it's only one app that I'm seeing the problem, all the others > appear to be runn

[google-appengine] problem with redirect

2009-08-28 Thread lookon
I have a function that use webapp.RequestHandler as parameter. Once I can do handler.redirect("http://aaa.com";). But since yesterday, the handle.redirect does not work. Anyone can help me? thanks --~--~-~--~~~---~--~~ You received this message because you are subsc

[google-appengine] Re: Eclipse auto-completion for response/request objects...

2008-10-07 Thread lookon
I have the same problem.. On Oct 7, 7:38 am, Drew <[EMAIL PROTECTED]> wrote: > After looking through this group I found this wonderful guide for > setting up Eclipse to work with GAE/Python using Pydev: > > http://code.google.com/appengine/articles/eclipse.html > > However, after following the in

[google-appengine] Re: Should each developer really have to pack his libs with his app?

2008-10-08 Thread lookon
agree On Oct 2, 12:44 am, Terrence Brannon <[EMAIL PROTECTED]> wrote: > It seems monolithic and redundant to not have a way to install certain > python libraries, hell why not all of pypi! > > But really, the place for libraries is not my application directory. > > If we can get a sandbox shell t

[google-appengine] how to do text search in GAE?

2008-11-30 Thread lookon
I've read the article http://code.google.com/appengine/articles/bulkload.html but I found it not work well...How to do text search in GAE? wish you can help me~ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google

[google-appengine] how to write code about table in template?

2008-11-30 Thread lookon
I want to render table in the response. and the template_value is objects. Then my question is how to write the template file. for example, {% for obj in objects %} code here {% endfor %} --~--~-~--~~~---~--~~ You received this message because you are subscr

[google-appengine] How to search Chinese using SearchableModel

2008-12-02 Thread lookon
the code is here: http://code.google.com/p/googleappengine/source/browse/trunk/google/appengine/ext/search/__init__.py?r=27 how to rewrite it to make it suitable for search Chinese(or other language)? currently the SearchableModel can not search Chinese --~--~-~--~~~-

[google-appengine] NeedIndexError: no matching index found

2008-12-02 Thread lookon
my code is query = db.Query(Image) query = Image.all() query.filter("owner =",user) query.order('-date') images = query.fetch(limit=20) but the server tells me that: NeedIndexError: no matching index found. This query needs this index: - kind:

[google-appengine] Is there any example code about paging?

2008-12-04 Thread lookon
I've watched Buildding Scalable Web Applications with Google App Engine on Youtube..But I wish there could be some example code about the topics. for example paging technique.. And I want to know where could see the code of some big apps using App Engine. I need to learn, thanks --~--~-~

[google-appengine] 3 questions (about paging again)

2008-12-07 Thread lookon
I've got how to page to some extent..But I still have some problems 1.What's the best way to implement tag to a model 2.in this way, how to page the tag page? for example, http://a.appspot.com/tag/google, I need to show all model whose tag is google, and I need to page it... 3.How to page the

[google-appengine] A newbie's site

2008-12-08 Thread lookon
I've built a google app engine site based on the simpleviewer example and FriendFeed Share Bookmarklet. The url is http://images.kangye.org/ It's a website to let people share images they saw on the Internet and wish people can give the image a suitable caption. It has a bookmarklet and in the de

[google-appengine] Force.com + Google App Engine = Cloud Relationship Management

2008-12-08 Thread lookon
Salesforce and Google have extended their strategic partnership with Force.com for Google App Engine, essentially bridging the two cloud- based application development environments. App Engine applications, which are typically consumer apps, will be able to access enterprise data and services via

[google-appengine] Expend the user API?

2008-12-28 Thread lookon
I wish in the next sdk, the user API can be expended. So we can get the friends of a user using the user api. Another request is that, the friendconnect should be compatible with GAE, so user need not to login twice. --~--~-~--~~~---~--~~ You received this message

[google-appengine] Re: A newbie's site

2009-01-02 Thread lookon
我已经做了不少修改了,现在支持RSS了已经,并且在图片的内容页会显示随机图片。CSS也优化过了 On Dec 8 2008, 4:04 pm, lookon wrote: > I've built a google app engine site based on the simpleviewer example > and FriendFeed Share Bookmarklet. The url ishttp://images.kangye.org/ > > It's a website to let people shar

[google-appengine] Extend Template

2009-01-03 Thread lookon
Is there any way for GAE to combine multiple templates to one. For example, I want to combine header.html, content.html, footer.html into on page, How can I do this under GAE? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

[google-appengine] Version 1.1.8 - January 7, 2008

2009-01-16 Thread lookon
it's cool for Get height and width of an image via the Images API. --~--~-~--~~~---~--~~ 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

[google-appengine] what's this quota?

2009-01-16 Thread lookon
Your application is exceeding a quota: App Config Service Config App Call Count how will I get this message? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send emai

[google-appengine] how to do both filter and order

2009-01-20 Thread lookon
I got this error: BadArgumentError: First ordering property must be the same as inequality filter property, if specified for this query; received liked, expected date The things I want to do is getting hot items. My query is q.filter('date >',yesterday).order("-liked") So, the error message tol

[google-appengine] two paging problems

2009-01-24 Thread lookon
I've read the discussion about paging and have post some problems. But I still have some problems. If I builds index by myself, I cannot index the search result. And if I have built index for an object and delete one instance of an object, the index will be broken. If I use the GAE Paginator cla

[google-appengine] How to use remote_api?

2009-02-13 Thread lookon
I am under Windows. Anyone can tell me how to use remote_api? Thanks. p.s. I met the problem that the appengine module cannot be easily imported. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" gr