[google-appengine] How do you deal with DownloadError?

2010-02-06 Thread kang
Let's talk about how we deal with this exception. I think most people met the problem once. -- Stay hungry,Stay foolish. -- 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.c

Re: [google-appengine] can i set the max retry times for task in quene?

2010-02-06 Thread kang
So we can get the already retried times and limit the retry times by ourself. Thanks. On Sun, Feb 7, 2010 at 12:30 AM, Prashant Gupta wrote: > you can check for X-AppEngine-TaskRetryCount in your code. > > > http://code.google.com/appengine/docs/java/taskqueue/overview.html#Task_Request_Headers >

Re: [google-appengine] getting back images from data store

2010-02-09 Thread kang
Have you seen the "Dynamically serving images" part on that page? http://code.google.com/intl/fr/appengine/docs/python/images/usingimages.html On Mon, Feb 8, 2010 at 1:56 AM, kais louetri wrote: > HI > i am using the exemple of the guestbook (http://code.google.com/intl/ > fr/appengine/docs/pyth

Re: [google-appengine] A "Which is Better" question.

2010-02-09 Thread kang
According to Google engineer, fetch entry by key is very fast. So you should use fetch by key rather than manipulating the list. I think the B approach will cost more CPU also. On Wed, Feb 10, 2010 at 1:38 AM, johnP wrote: > I'm trying to get my head around where to use the datastore for > busin

Re: [google-appengine] Re: Android app to monitor appengine quotas

2010-02-10 Thread kang
thanks for sharing. will your app be opensourced? On Wed, Feb 10, 2010 at 5:05 AM, Hugo Visser wrote: > Hi, > > I've updated Engine Watch for Android. New: > - Now uses the build-in system Google Accounts on Android 2.0 and up > (no more entering passwords) > - Add shortcuts to a specific app on

Re: [google-appengine] App Engine SDK 1.3.1 is out!

2010-02-10 Thread kang
cool! On Thu, Feb 11, 2010 at 7:15 AM, Ikai L (Google) wrote: > Check it out! > > > http://googleappengine.blogspot.com/2010/02/app-engine-sdk-131-including-major.html > > > Here's > the post: > > App Engine SDK

Re: [google-appengine] need help on creating sub domain

2010-02-12 Thread kang
just visit my.xyz.appspot.com...it is automatically equal to www.xyz.appspot.com On Wed, Feb 10, 2010 at 2:56 PM, technut wrote: > Hi, > > How do i configure sub domain in apps engine. > > my existing domain is : www.xyz.appspot.com > want to include subdomain : my.xyz.appspot.com > > Its apprec

Re: [google-appengine] Can I use urlfetch to do a multipart post?

2010-02-12 Thread kang
You just submit the encoded multipart form and it will be OK. you can see this code: http://code.google.com/p/python-twitpic/ On Sat, Feb 13, 2010 at 12:54 AM, Join wrote: > Hi Team, > > I'm making an app to implement following design: > > binary+text -> browser -> app engine(my app) -> 3rd par

Re: [google-appengine] Upload and download files (Blob)

2010-02-12 Thread kang
http://code.google.com/appengine/docs/python/blobstore/overview.html On Sat, Feb 13, 2010 at 12:58 AM, Ice13ill wrote: > If I save a file as a Blob (let's say i have a class with a key,String > filename and Blob data) how do i restore the file and send it to the > client ? > > -- > You received

Re: [google-appengine] eclipse

2010-02-12 Thread kang
http://code.google.com/appengine/docs/python/howto/usinggdataservices.html On Fri, Feb 12, 2010 at 8:41 PM, bhuvan wrote: > i want to create new site using GData.what option i need to go. > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" gro

Re: [google-appengine] about clearing the datastore

2010-02-13 Thread kang
OK. Thanks for you reply. So it's hard to change the datastore structure in GAE? On Sat, Feb 13, 2010 at 1:50 AM, Ikai L (Google) wrote: > Unfortunately, we don't have mass deletion capability yet. The datastore > isn't like a relational database where we can just drop a table. Entities > are s

Re: [google-appengine] about clearing the datastore

2010-02-17 Thread kang
engine/articles/storage_breakdown.html > > On Sat, Feb 13, 2010 at 11:16 PM, kang wrote: > >> OK. Thanks for you reply. So it's hard to change the datastore structure >> in GAE? >> >> >> On Sat, Feb 13, 2010 at 1:50 AM, Ikai L (Google) wrote: >> &

[google-appengine] Feature suggestion: Paying Ststem

2010-02-17 Thread kang
I think Google App Engine need to give us a paying system like App Store and Android Market or give us some API about paying. We need a web app store :-) Thanks -- Stay hungry,Stay foolish. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group.

Re: [google-appengine] Downloading source code from Google App Engine

2010-02-17 Thread kang
I use dropbox to back up my app engine source code. I put the app engine code in a dropbox folder. On Thu, Feb 18, 2010 at 2:02 AM, Renee Maier wrote: > I was wondering if there is a way to download the source code from my > app engine project? My hard drive crashed on my Mac and I (stupidly) >

Re: [google-appengine] Please more easy to ManageFile!!!!!!!!!!!!!!!!!!!!!

2010-02-17 Thread kang
Maybe it is because Google use different filesystem On Wed, Feb 17, 2010 at 10:15 PM, a...@hocvui.net wrote: > Google App Engine provide one off the best web hosting, but it's hard > to upload and manage the file. > > Why not suppot and online File Manager tools like Cpanel , Plesk easy > to

[google-appengine] something strange happend to my app

2010-02-18 Thread kang
my app is reader2twitter, it receive notification from hub and send it to twitter. However, recently, something strange happend. When the hub give me a notification, my app manipulate it twice and then send two updates to twitter. I see it in the log. Can you explain me how this happened? Here is

[google-appengine] what's the cost of clearing the datastore?

2010-02-20 Thread kang
I'm going to clear the datastore. I use the following code: old_date = datetime.datetime(2009,10,1) old_updates = SomeUpdate.all().filter("updated <",old_date).fetch(20) db.delete(old_updates) it costs me nearly 1982cpu_ms 1945api_cpu_ms every time. Is it normal? -- Stay hungry,Sta

Re: [google-appengine] what's the cost of clearing the datastore?

2010-02-20 Thread kang
Thanks, Andrew. But after the change, it still costs me 2130cpu_ms 2112api_cpu_ms :) On Sat, Feb 20, 2010 at 5:22 PM, Andrew Chilton wrote: > On 20 February 2010 21:21, kang wrote: > > I'm going to clear the datastore. I use the following code: > > old_date = datetim

Re: [google-appengine] Re: what's the cost of clearing the datastore?

2010-02-20 Thread kang
y the maximum number of entities in a batch (500, I think), > calculate the average cost per entity, and see if that's any better? > > On Feb 20, 11:41 am, kang wrote: > > Thanks, Andrew. But after the change, it still costs me 2130cpu_ms > > 2112api_cpu_ms :) >

[google-appengine] app engine is down?

2010-02-24 Thread kang
Error: Server Error -- Stay hungry,Stay foolish. -- 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+unsu

[google-appengine] Re: app engine is down?

2010-02-24 Thread kang
Wish Google can tell us its maintain time:) On Wed, Feb 24, 2010 at 11:51 PM, kang wrote: > Error: > Server Error > > > -- > Stay hungry,Stay foolish. > -- Stay hungry,Stay foolish. -- You received this message because you are subscribed to the Google Groups "Go

Re: [google-appengine] Re: logs are using Pacific time

2010-02-24 Thread kang
sp On Thu, Feb 25, 2010 at 12:33 AM, Blake wrote: > I hate the mental conversion of PST to EST when viewing the logs - > it'd be nice if they'd use our google profile to format the logs for > us. > > On Feb 23, 5:28 pm, Locke wrote: > > Is there a reason for the logs to show up in Pacific time

Re: [google-appengine] Fwd: Unscheduled App Engine Outage - February 24th, 2010

2010-02-24 Thread kang
how to subscribe? On Thu, Feb 25, 2010 at 12:51 AM, Eli Jones wrote: > for people not subscribed to downtime-notify, this was sent out 14 minutes > ago. > > -- Forwarded message -- > From: App Engine Team > Date: Wed, Feb 24, 2010 at 11:36 AM > Subject: Unscheduled App Engine Ou

Re: [google-appengine] Fwd: Unscheduled App Engine Outage - February 24th, 2010

2010-02-24 Thread kang
thanks On Thu, Feb 25, 2010 at 1:20 AM, Prashant Gupta wrote: > http://groups.google.com/group/google-appengine-downtime-notify > > -- > 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...@g

Re: [google-appengine] back to life

2010-02-24 Thread kang
right. but Datastore writes are temporarily unavailable On Thu, Feb 25, 2010 at 1:49 AM, bFlood wrote: > GAE seems to be coming back to life > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to goog

[google-appengine] Delete of empty result fails in 1.3.3

2010-04-23 Thread kang
plz patch this bug :-0 http://code.google.com/p/googleappengine/issues/detail?id=3122&q=list%20index%20out%20of%20range&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log%20Component#makechanges -- Stay hungry,Stay foolish. -- You received this message because you are subscr

[google-appengine] Re: Help: I want to have an app engine space!!

2008-10-08 Thread Kang
不可以用么?GAE要手机验证? 我是测试时就可以用了的,也在中国 wenxin ren 写道: thanks a lot. for my poor english, would you please make me clear about the carrier name? what does this mean? does carrier means the companies like AT & T? which operating on the wireless network for the mobile phone? 2008/10/9 fedekun

[google-appengine] Re: Help: I want to have an app engine space!!

2008-10-08 Thread Kang
具体怎么说? wenxin ren 写道: > 是啊。现在注册不了了。 > > 2008/10/9 Kang <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > > 不可以用么?GAE要手机验证? > > 我是测试时就可以用了的,也在中国 > > wenxin ren 写道: >> thanks a lot. >> for my poor english, would you please make

[google-appengine] How to use timeutil module in GAE?

2008-10-08 Thread Kang
I cannot import that module in GAE. Wish your help. p.s. I cannot import epsilon module either... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to googl

[google-appengine] Re: Help: I want to have an app engine space!!

2008-10-08 Thread Kang
噢。。。那中国用户就注册不了了么? p.s. carrier指的是运营商,China /Mobile/-中国移动, China Telecom中国联通 wenxin ren 写道: > 具体就是注册时让你输入号码 > 没有通过前什么都做不了 > > 2008/10/9 Kang <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> > > 具体怎么说? > > > wenxin ren 写道: >> 是啊。现在注册不了

[google-appengine] Re: How to use timeutil module in GAE?

2008-10-10 Thread kang
> On Wed, Oct 8, 2008 at 8:28 PM, Kang <[EMAIL PROTECTED]> wrote: > >> >> I cannot import that module in GAE. Wish your help. >> >> p.s. I cannot import epsilon module either... >> >> >> > > > > -- Stay hungry,Stay foolish.

[google-appengine] Re: Getting 'UnicodeDecodeError'. Please help

2008-10-14 Thread kang
a.decode('utf8','ignore') On Tue, Oct 14, 2008 at 12:44 PM, Nishu <[EMAIL PROTECTED]> wrote: > > Hello, > > I am trying to develop a screen scraping application using the google > Webapp framework. The application parses the html output of some other > page to extract the required data and then f

[google-appengine] Re: Ordering with an inequality filter

2008-10-14 Thread kang
maybe you can write GQL like: SELECT * FROM [WHERE [AND ...]] [ORDER BY [ASC | DESC] [, [ASC | DESC] ...]] [LIMIT [,]] [OFFSET ] On Wed, Oct 15, 2008 at 6:38 AM, mrchucho <[EMAIL PROTECTED]> wrote: > > Let's say I have blog and I want to fetch the top 10 posts created in >

[google-appengine] Re: Possible to subclass User?

2008-10-14 Thread kang
yep, you can use UserProperty On Wed, Oct 15, 2008 at 3:06 AM, Mahmoud <[EMAIL PROTECTED]> wrote: > > I think the overall recommended design practice in this case is to > favor composition over inheritance. In our application, we have an > application specific user entity that has a db.UserPropert

[google-appengine] Re: Newbie question - Request params available to def post(self)

2008-10-14 Thread kang
or you can write code like: class Stuff: get(self,favorites): do something here. application = webapp.WSGIApplication( [(r'^/stuff/favorites/(?P(favorites).*)$', Stuff)], debug=True) the url is like : /stuff/favorites/oatmeal&raisinbran

[google-appengine] Re: Getting 'UnicodeDecodeError'. Please help

2008-10-15 Thread Kang
some > other character. So please suggest which one should I use, the one > with 'ignore' or the one with 'replace' and WHY? Can you also suggest > me some good book for learning PYTHON? > > Thanks once again. > > Nishant > > On Oct 14, 4:27 pm, kang <

[google-appengine] Re: How can I get a GAE Account?

2008-10-15 Thread Kang
我邀请你了。 [EMAIL PROTECTED] 写道: 哎,我最近才学的Python,看了GAE的一些视频之后,对GAE很感兴趣,就是申请不到账号,这棵咋搞哦~~,应该是可以邀请别人的吧? On 10月15日, 下午4时00分, Kang <[EMAIL PROTECTED]> wrote: 我也不知道怎么给你。。因为我也在中国。。[EMAIL PROTECTED]写道:Why nobody pay attention to me? Is there anyone could send a invitation to me? than

[google-appengine] Re: Modeling mutual references

2008-10-15 Thread kang
Maybe: class Book(db.Model): title = db.StringProperty() first = db.ReferenceProperty(Page) class Page(db.Model): text = db.TextProperty() next = db.SelfReferenceProperty() book = db.IntegerProperty

[google-appengine] Re: How can I get a GAE Account?

2008-10-15 Thread Kang
我也不知道怎么给你。。因为我也在中国。。 [EMAIL PROTECTED] 写道: Why nobody pay attention to me? Is there anyone could send a invitation to me? thanks! On 10月14日, 下午11时22分, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: My country is not in the Supported mobile providers list, but how can I get the G

[google-appengine] Re: Newbie question - Request params available to def post(self)

2008-10-15 Thread kang
self.response.out.write(template.render(path, values, > debug=_DEBUG)) > > > This seems like a helpful idiom so that all of the original request > variables for a get are available to the django template code for use > in POST hidden fields. >

[google-appengine] Re: How can I get a GAE Account?

2008-10-15 Thread kang
我是在没有手机验证的时候就注册了的~ 现在做了一个 http:luck.appspot.com 2008/10/15 robbie <[EMAIL PROTECTED]> > 不是邀请注册么? > > 那各位是怎么注册帐号的?我也是注册不了 > > On 10月15日, 下午9时00分, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > 哦,是邀请共同开发啊~,看来没有邀请注册的~ > > 哎~,失望哦~~~ >

[google-appengine] Re: can I have a primery key of my own?

2008-10-15 Thread kang
class MyBooks(db.Model): bookid=db.IntegerProperty(name='key') author = db.StringProperty(multiline=True) book_name = db.StringProperty(multiline=True) price = db.IntegerProperty() date = db.DateTimeProperty(auto_now_add=True) On Wed, Oct 15, 2008 at 2:29 PM, ajaxer <[EMAIL PROTECTED]> wrote

[google-appengine] Re: Upload demo to GAE Error, caused by _GetAuthCookie, timed out

2008-10-15 Thread kang
you can ping appspot.com and give us the result. On Wed, Oct 15, 2008 at 9:15 PM, Chao Loo <[EMAIL PROTECTED]> wrote: > Hi, > > I keep getting the following error while trying to upload GAE demo > (guestbook). > > Here is the stack trace: > - > C:\Progr

[google-appengine] Re: Gql Issue

2008-10-15 Thread kang
Maybe you can use the flowing code: query = db.Query(MyBooks) query.filter('author =', 'orlly') results = query.fetch() On Wed, Oct 15, 2008 at 8:23 PM, tejas <[EMAIL PROTECTED]> wrote: > > class MyBooks(db.Model): > bookid=db.IntegerProperty(name='key') > author = db.StringProperty(multilin

[google-appengine] Re: 'Google App Engine for Dummies' - references and stuff to support GAE

2008-10-15 Thread kang
well done. p.s. the /linkcity has a bug and /search has a design problem On Thu, Oct 16, 2008 at 4:57 AM, Garrett Davis <[EMAIL PROTECTED]>wrote: > > I have been working on a site to help developers, and newcomers, > find documentation and other information about the App Engine. > > It's called

[google-appengine] Re: Newbie question - Request params available to def post(self)

2008-10-16 Thread kang
want to use part of the URL path as arguments to the handler > you use groups in the > webapp.WSGIApplication argument. > If the URL has parameters (there is a '?' after the URL path) like > www.a.com/?a=1&b=2 > You use self.request.get('a') in the handler t

[google-appengine] Re: Newbie question - Request params available to def post(self)

2008-10-16 Thread kang
different syntax based on how the > variables are sent. > > On Oct 16, 3:59 am, kang <[EMAIL PROTECTED]> wrote: > > I mean Get method... > > > > I have not seen any Get/parameter method in the page.. > > > > def post(self): > > greeting = Gre

[google-appengine] Re: HTTPS Support for appspot.com

2008-10-16 Thread kang
well done On Fri, Oct 17, 2008 at 6:03 AM, Marzia Niccolai <[EMAIL PROTECTED]> wrote: > One of the most frequently requested features for App Engine has been HTTPS > serving capabilities. Today we're excited to announce that App Engine now > supports incoming HTTPS connections using a certificat

[google-appengine] Re: Ggl where clause issue

2008-10-16 Thread kang
So there is no default way to order by 'ID"? On Fri, Oct 17, 2008 at 7:53 AM, djidjadji <[EMAIL PROTECTED]> wrote: > > > but in the data base how can i store unique number which should > > incremented. > In the datastore create an object with only an IntegerProperty (counter). > It has a method t

[google-appengine] Re: I can't get verify code

2008-10-16 Thread kang
http://appengine.google.com/waitlist/sms_issues On Fri, Oct 17, 2008 at 9:38 AM, Freshow <[EMAIL PROTECTED]> wrote: > > show error like this, but i did not get any code , what can i do? > > - > > There were errors: > >* Mobile Number or Username > > > > >

[google-appengine] Re: DownloadError: ApplicationError: 2 ?

2008-10-28 Thread kang
the remote server has blocked GAE On Wed, Oct 29, 2008 at 11:33 AM, Noah <[EMAIL PROTECTED]> wrote: > > no idea, unfortunately. and now i have the same problem. if anyone > has any help, i'm all ears!! > > On Oct 9, 3:45 pm, Jean-Lou Dupont <[EMAIL PROTECTED]> wrote: > > What is the significanc

[google-appengine] Re: Newbie trouble

2008-11-02 Thread kang
what OS are you using? On Sat, Nov 1, 2008 at 5:27 PM, cowtrix <[EMAIL PROTECTED]> wrote: > > Hey, this looks like a really cool tool, and I'm trying to learn it. > Not a big coder though, that might be a prerequisite :P > > Anyway, I'm having trouble with the most basic thing... running the > de

[google-appengine] Re: No module name pwd?

2008-11-25 Thread kang
http://code.google.com/appengine/articles/index_building.html On Tue, Nov 25, 2008 at 3:29 PM, Devel63 <[EMAIL PROTECTED]> wrote: > > I just uploaded a slightly revised version of my app engine app, and > nothing works anymore. Well, almost nothing. Most pages give me this > 500 error > > Erro

[google-appengine] Re: New Article on How Index Building Works

2008-11-27 Thread kang
re On Thu, Nov 27, 2008 at 1:18 AM, Ben Nevile <[EMAIL PROTECTED]> wrote: > > Great article, thanks GAE team! > > > > On Nov 25, 1:30 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote: > > Hi, > > > > There have been a lot of questions on this group about index building and > > Ryan Barrett, the tech

[google-appengine] Re: New app for finding wallpaper images - feedback welcome :)

2008-11-27 Thread kang
support...and this site's css design need to be better On Fri, Nov 28, 2008 at 12:18 AM, Ben Nevile <[EMAIL PROTECTED]> wrote: > > Cool app Bonstio - my quick suggestion would be to re-organize the > page so that the image is at the top rather than below your > explanatory paragraph. I have to s

[google-appengine] Re: Converting .wav to .mp3

2008-11-29 Thread kang
how to store these wav file? On Sat, Nov 29, 2008 at 1:18 AM, egilchri <[EMAIL PROTECTED]> wrote: > > I have an App Engine app (http://vnoted.com), that's creates voice > notes, from the phone, that are .wav files. I'd like to have the > ability to convert the .wav files to .mp3, Is there a way I

[google-appengine] Re: New app for finding wallpaper images - feedback welcome :)

2008-11-29 Thread kang
the least. > > > > The rework is underway. I'll post back when it's done - which will be > > soon! > > > > On Nov 28, 12:24 am, kang <[EMAIL PROTECTED]> wrote: > > > > > support...and this site's css design need to be better >

[google-appengine] Re: New app for finding wallpaper images - feedback welcome :)

2008-11-29 Thread kang
rk is underway. I'll post back when it's done - which will be > > soon! > > > > On Nov 28, 12:24 am, kang <[EMAIL PROTECTED]> wrote: > > > > > support...and this site's css design need to be better > > > > > On Fri, Nov 2

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

2008-11-30 Thread kang
Thank you for your reply is there any example code about full text search with gae? On 12/1/08, Dan Sanderson <[EMAIL PROTECTED]> wrote: > The datastore does not have a built-in feature for doing full-text search of > an entity property. You can maintain your own search indexes, as the search >

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

2008-11-30 Thread kang
Thank you. I've got it... and this post help: http://www.johnborwick.com/blog/2008/10/27/appengine_django-basemodel-and-searchablemodel/ On Mon, Dec 1, 2008 at 12:24 PM, Alexander Kojevnikov < [EMAIL PROTECTED]> wrote: > > > Thank you for your reply is there any example code about full text > >

[google-appengine] Re: url's in application configuration

2008-11-30 Thread kang
handlers: - url: /gae script: main.py On Sun, Nov 30, 2008 at 9:55 AM, ten_foot_ninja <[EMAIL PROTECTED]> wrote: > > Hello, > I get the following error: > "Not found error: /gae did not match any patterns in application > configuration." > output to my browser when I am enter "http://localhost:

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

2008-11-30 Thread kang
anther question...I have some foreign language stored in the datastore...but i can not search them...what can I do ? On Mon, Dec 1, 2008 at 12:24 PM, Alexander Kojevnikov < [EMAIL PROTECTED]> wrote: > > > Thank you for your reply is there any example code about full text > > search with gae? > >

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

2008-12-01 Thread kang
what? I want to show 5 objs in each row, how to write the code? On Mon, Dec 1, 2008 at 5:01 PM, A. TNG <[EMAIL PROTECTED]> wrote: > > On Mon, Dec 1, 2008 at 2:27 PM, lookon <[EMAIL PROTECTED]> wrote: > > > > I want to render table in the response. and the template_value is > > objects. Then my qu

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

2008-12-01 Thread kang
} > > {{ obj.col1 }}{{ obj.col2 }}... > > {% endfor %} > > > > On Dec 1, 10:04 am, kang <[EMAIL PROTECTED]> wrote: > > what? > > I want to show 5 objs in each row, how to write the code? > > > > > > > > On Mon, Dec 1, 2008 at 5:01 PM

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

2008-12-01 Thread kang
anyone have experience in SearchableModel? On Mon, Dec 1, 2008 at 3:10 PM, kang <[EMAIL PROTECTED]> wrote: > anther question...I have some foreign language stored in the > datastore...but i can not search them...what can I do ? > > On Mon, Dec 1, 2008 at 12:24 PM, Alexander Koj

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

2008-12-02 Thread kang
t; > In template file than you can have nested for loop. > > > > {% for obj in objects %} > >{% for image in obj.images %} > {{ image }} > {% endfor %} > > {% endfor %} > > > > On Dec 2, 2:56 am, kang <[EMAIL PROTECTED]> wrote

[google-appengine] Re: NeedIndexError: no matching index found

2008-12-03 Thread kang
it works..thank you On Wed, Dec 3, 2008 at 11:27 AM, Alexander Kojevnikov < [EMAIL PROTECTED]> wrote: > > You need to add the index to your index.yaml file (if it's not already > added by the dev_appserver.py), update the indices with appcfg.py and > wait until the index is built. > > See this pa

[google-appengine] Re: GAE will hurt Linux unless...

2008-12-03 Thread kang
support google os On Thu, Dec 4, 2008 at 4:23 AM, Amir Michail <[EMAIL PROTECTED]> wrote: > > Hi, > > I suspect that the Google App Engine (and cloud computing more > generally) will have the unintended effect of significantly reducing > usage of Linux among web developers. > > The solution of

[google-appengine] Re: Configuring Friend Connect

2008-12-04 Thread kang
right i've configured for my app but what do you think of the Friend Connect? I think an appengine website need not use it... On Thu, Dec 4, 2008 at 6:28 AM, Andi Albrecht <[EMAIL PROTECTED]>wrote: > > Hi Rajiv, > > here's how I did it... I copied the two files in a directory called > "stati

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

2008-12-04 Thread kang
I know both...But the example apps do not cover the paging problem.. and the big apps do not give source code On Thu, Dec 4, 2008 at 7:44 PM, A. TNG <[EMAIL PROTECTED]> wrote: > > On Thu, Dec 4, 2008 at 6:58 PM, lookon <[EMAIL PROTECTED]> wrote: > > > > I've watched Buildding Scalable Web Applica

[google-appengine] Re: Configuring Friend Connect

2008-12-04 Thread kang
GAE itself has google account model, and user can login.. but if they want to post through FriendConnect ,they need to login for the second time it's not a good user experience On Thu, Dec 4, 2008 at 8:17 PM, Andi Albrecht <[EMAIL PROTECTED]>wrote: > > On Thu, Dec 4, 2008

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

2008-12-04 Thread kang
gt; I use this as a temporary option while Search become better > > On 1 dic, 21:18, kang <[EMAIL PROTECTED]> wrote: > > anyone have experience in SearchableModel? > > > > > > > > On Mon, Dec 1, 2008 at 3:10 PM, kang <[EMAIL PROTECTED]> wrote: > > >

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

2008-12-04 Thread kang
> about sausages and cheese in the middle of itself.''' > article.save() > print "Results" > query = Article.all().search("sausages cheese dogs").order("-publishDate") > for a in query: >print "%s | %s" % (a.ti

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

2008-12-05 Thread kang
Dec 5, 2008 at 10:08 AM, kang <[EMAIL PROTECTED]> wrote: > >> Thanks...so there is no good solution for this problem now? I haven't seen >> it in the roadmap... >> >> > > > > -- Stay hungry,Stay foolish. --~--~-~--~~~---

[google-appengine] Re: App Engine in China

2008-12-05 Thread kang
ch gov blocked it On Sat, Dec 6, 2008 at 10:53 AM, MHblue <[EMAIL PROTECTED]> wrote: > > My friends in Beijing keep complaining that my site goes down. Some > days they can access it, other days not. It's very frustrating. And > it's hosted on my own domain. > > Does anyone have details on why pe

[google-appengine] Re: Yammer+OAuth+GAE

2008-12-05 Thread kang
I've read an article about AuthSub... http://code.google.com/appengine/articles/gdata.html On Sat, Dec 6, 2008 at 4:03 AM, neich <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm trying to implement oAuth so my GAE app can access private > resource of Yammer users. I've modified the python code from: >

[google-appengine] Re: Error: Method Not Allowed

2008-12-05 Thread kang
your code? On Sat, Dec 6, 2008 at 5:12 AM, SebastienDudek <[EMAIL PROTECTED]> wrote: > > Hi ! > > I started a new application inside Google Engine : > http://fluxius.appspot.com/ > > This application is a part of guestbook in documentations. Problem is > than I can submit by get methods but with

[google-appengine] Re: How far can Google take this thing?

2008-12-06 Thread kang
a very good post On Sat, Dec 6, 2008 at 2:42 AM, rvjcallanan <[EMAIL PROTECTED]> wrote: > > I am about to take the GAE plunge (at least in the experimentation > sense). > I understand the current irritations and I am hopeful that these will > be overcome in due course > > But I am very curious ho

[google-appengine] Re: Datastore Class db.Model Relationships

2008-12-06 Thread kang
maybe this helps: http://gaesql.appspot.com/ On Sat, Dec 6, 2008 at 9:54 PM, lawnman <[EMAIL PROTECTED]> wrote: > > Is it possible to have a class based on db.Model that contains a list > of other classes also based on db.Model but where the second classes > are not stored in the Datastore separa

[google-appengine] Re: Problem adding my own domain , without right to change Cname record

2008-12-08 Thread kang
first you need to apply for google apps then, in the gae admin page, set your subdomain and domain then ,chname your sub domain to ghs.google.com wish this can help you : http://code.google.com/appengine/articles/domains.html On Mon, Dec 8, 2008 at 4:21 PM, Possum <[EMAIL PROTECTED]> wrote: > > H

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

2008-12-08 Thread kang
I've noticed this problem...and will adjust it.. Do you think the FriendConnect should be placed in the right? On Mon, Dec 8, 2008 at 5:06 PM, Bill <[EMAIL PROTECTED]> wrote: > > Nice. I'd give more room to the Google Friend login area because most > of it is cut off. Maybe use CSS and float it

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

2008-12-08 Thread kang
I've change it...any suggestion? On Mon, Dec 8, 2008 at 5:28 PM, Bill <[EMAIL PROTECTED]> wrote: > > On Dec 8, 1:15 am, kang <[EMAIL PROTECTED]> wrote: > > I've noticed this problem...and will adjust it.. > > Do you think the FriendConnect should be plac

[google-appengine] Re: about DB.Query Question

2008-12-08 Thread kang
error message? On Mon, Dec 8, 2008 at 11:28 AM, ivivian <[EMAIL PROTECTED]> wrote: > > If the following statement, the normal: > users = db.Query(Users) > users.filter('fpx > ', getmin).filter('ffpx < ', getmax).filter('fpy = > ', '180').filter('fpy = ', '1') > > If the following statement, the e

[google-appengine] Re: Configuring Friend Connect

2008-12-08 Thread kang
; wrote: > > On Thu, Dec 4, 2008 at 1:24 PM, kang <[EMAIL PROTECTED]> wrote: > > > GAE itself has google account model, and user can login.. but if they > want > > > to post through FriendConnect ,they need to login for the second > time > > > it&#x

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

2008-12-08 Thread kang
I haven't got it...what is the 'index' for in your code? For different tags, they have different index for an object. 3rd question is about search the model. On Tue, Dec 9, 2008 at 4:03 AM, Marzia Niccolai <[EMAIL PROTECTED]> wrote: > Hi, > > If you store the tags in a list, you should be able fi

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

2008-12-08 Thread kang
Thanks..But there is still a lot of work to do and I am new to GAE... On Mon, Dec 8, 2008 at 10:17 PM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > nice > a chinese saying--'Bang'! > XD > > On Dec 8, 5:43 pm, kang <[EMAIL PROTECTED]> wrote: > &g

[google-appengine] Re: Extending the cloud to the client with Gears and App Engine

2008-12-08 Thread kang
good job...it's cool On Tue, Dec 9, 2008 at 1:03 AM, Malte Ubl <[EMAIL PROTECTED]> wrote: > > Hey, > > Dion posted on Ajaxian about this today > > http://ajaxian.com/archives/massively-parallel-crowd-sourced-javascript-app-server-seti-for-js > > The App Engine service went down afterwards for mos

[google-appengine] Re: About the URL error

2008-12-08 Thread kang
use urlfetch instead http://code.google.com/appengine/docs/urlfetch/ On Mon, Dec 8, 2008 at 8:05 PM, sirisha <[EMAIL PROTECTED]> wrote: > > Hi, > > I have developed the application in webapp > framework,but while uploading the application ,I am getting an error > like : > >

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

2008-12-09 Thread kang
; -Marzia > > On Mon, Dec 8, 2008 at 5:01 PM, kang <[EMAIL PROTECTED]> wrote: > >> I haven't got it...what is the 'index' for in your code? For different >> tags, they have different index for an object. >> 3rd question is about search the model

[google-appengine] Re: URLlib?

2008-12-14 Thread kang
use urlfetch instead... http://code.google.com/intl/en-US/appengine/docs/urlfetch/ On Sun, Dec 14, 2008 at 11:50 AM, moham...@ahft.org < mohammad.typal...@gmail.com> wrote: > > is it posable to use it(urllib)? It will not let the opener init. so > how can I run this? vital to my app! ugh, looking

[google-appengine] Re: Tutorial: How to manage Tags and Tag clouds with AppEngine and Django

2008-12-15 Thread kang
great On Mon, Dec 15, 2008 at 4:20 PM, xponrails wrote: > > Hi. I'm a J2EE, Python and Rails developer. > > I've just posted a tutorial (http://xponrails.net/wrblog/view_post/19) > on how to model and manage Tags in an AppEngine-Django application. > > The code works well for me, but I would lik

[google-appengine] Re: Does SDK datastore data upload with appcfg.py?

2009-01-02 Thread kang
no On Sat, Jan 3, 2009 at 2:48 AM, 84dory wrote: > > Pardon what should be an obvious question, but I have been unable to > find a simple declarative answer. Is the development data in the dev > server datastore uploaded by appcfg.py? > > Thanks! > > > > -- Stay hungry,Stay foolish. --~--~-

[google-appengine] Re: 有谁知道怎样将域 名指向app engine的方法?

2009-01-05 Thread kang
加我好友吧,告诉你 2009/1/4 zhuming liu > 有谁知道怎样将域名指向app engine的方法? > > > -- Stay hungry,Stay foolish. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to googl

[google-appengine] Re: What is the fastest way to check if an item is in the datastore?

2009-01-12 Thread kang
you get it On Tue, Jan 13, 2009 at 10:30 AM, SM wrote: > > Thank you to everyone for the responses. > > If I understand correctly, for my exampe I should use > > if MyModel.gql("WHERE prop = :1 AND active = True", s).count(1): > print "Found" > else: > print "Not found" > > > On Jan 12, 5:52

[google-appengine] Re: Add Domain (New Domain Depoloyment)

2009-01-14 Thread kang
yep On Fri, Jan 9, 2009 at 12:46 AM, Marzia Niccolai wrote: > Hi, > > In order to serve an App Engine app off your domain it must be a Google > Apps domain. (2) alone is not sufficient. > > -Marzia > > > On Thu, Jan 8, 2009 at 7:59 AM, PatHaugen wrote: > >> >> I searched groups and help, b

[google-appengine] Re: Submitting App to the Gallery

2009-01-14 Thread kang
yep ... almost immediately On Wed, Jan 7, 2009 at 4:52 PM, tianxin...@gmail.com wrote: > > almost immediately, as far as I have experienced. You need to add your > application to the gallery manually. > > On Jan 6, 5:49 pm, "deji.omis...@gmail.com" > wrote: > > Anyone knows how long this takes

[google-appengine] Re: GAE Datastore & OpenSocial

2009-01-14 Thread kang
I also have this problem, for opensocial is limited On Thu, Jan 15, 2009 at 6:06 AM, Chen Harel wrote: > > Hi, I am saving information regarding the users of my gadget. > I have a procedure where I need to get information about the user > friends who are also using my gadget. > a. Is there a be

[google-appengine] Re: Announce - App Engine Web Services in Minutes

2009-01-14 Thread kang
the website is banned in China On Thu, Jan 15, 2009 at 9:52 AM, edg wrote: > > This message is to notify GAE developers that Cumulo Software has > released Cumulo SAASi. SAASi allows you to easily construct web > services in any programming language. For GAE developers, this means > it's very ea

[google-appengine] Re: App Engine Gurus

2009-01-17 Thread kang
great On Sat, Jan 17, 2009 at 8:56 PM, Sharp-Developer.Net < alexander.trakhime...@gmail.com> wrote: > > Congrats to Alex & Bill. > > This is well deserved recognition. > -- > Alex > http://sharp-developer.net/ > > On Jan 15, 8:12 pm, "Daniel O'Brien (Google)" wrote: > > Hello everyone, > > > >

[google-appengine] Re: Hello,I´m new with App Engine

2009-01-19 Thread kang
use appcfg.py update e:\gae\helloworld instead On Sat, Jan 17, 2009 at 11:17 AM, v.beh...@googlemail.com < v.beh...@googlemail.com> wrote: > > Hello,I´m new with App Engine and I can´t upload my developments. > I always tap: appcfg.py update helloworld/ > but there`s only an error massage:Usage:

  1   2   >