Re: [google-appengine] Select columns

2010-01-28 Thread Robert Kluin
You are on the right track with your second idea. Create a separate kind for 'D'. I am not familiar enough with the semantics of GAE-Java to suggest a specific implementation. In GAE-Python I would make the kind with A, B, C the parent of the kind containing D, that would allow me to reconstruct

[google-appengine] Select columns

2010-01-28 Thread Manny S
Hi All, First off, thanks for your time. A quick noob question on the right way to model data. I have a table with four columns A,B,C, D. D - the fourth is of type text (contains quite a bit of data). I wanted to ensure that the contents of the details column 'D' is not fetched during a query.

Re: [google-appengine] Re: Cron jobs fail with error "Request was aborted after waiting too long to attempt to service your request."

2010-01-28 Thread Abhinav Bhagwat
I am monitoring my app since past 1 week and I have found that the error rate has dropped to almost 0% (I see 1 or 2 requests failing sometimes). Thanks for fixing this issue. Thanks, Abhinav On Thu, Jan 21, 2010 at 5:55 AM, Xlorep DarkHelm wrote: > Just as an FYI, I also have been seeing thi

[google-appengine] Re: help with array

2010-01-28 Thread johnP
Correction - the solution I provided returns an incorrect result. So don't use it :) johnP On Jan 28, 4:26 pm, johnP wrote: > One possibility: > > >>> a,b,c,= [1,2,3,4,5], [4,5,6,7,8], [4,5,99,88,77] > >>> res = list(set([i for i in (a+b+c) if (a+b+c).count(i) >1])) > >>> print res > > [4, 5] >

[google-appengine] Re: what is wrong of this info when uploading?

2010-01-28 Thread saintthor
thanks universe, it turns ok after i reset internet config. i think it is PAPER BUS that caused this matter. On 1月28日, 下午11时44分, saintthor wrote: > i can access appengine.google.com with firefox while uploading fail. > could it be some wrong with firewall/proxy? > > how to test it ? > > thanks >

[google-appengine] how can i edit the program files online?

2010-01-28 Thread saintthor
the launcher can not deploy my files from yesterday. i need other ways to update my app. maybe by docs, email or some way else. -- 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...@googlegrou

[google-appengine] We Need an Email Signature App!

2010-01-28 Thread Neil
I love everything about Google Apps but who doesn't wish that we all could make nice custom font and colored email signatures with logo attachments and such. It's the only thing that bothers me and everyone in my business. We have to POP everything in to Outlook and use that if we want to send nice

Re: [google-appengine] Re: help with array

2010-01-28 Thread Jesaja Everling
This should also work: list(set(a) & set(b) & set(c)) You can get the intersection of tags with &. Best Regards, Jesaja Everling On Fri, Jan 29, 2010 at 1:26 AM, johnP wrote: > One possibility: > a,b,c,= [1,2,3,4,5], [4,5,6,7,8], [4,5,99,88,77] res = list(set([i for i in (a+b+c) if

[google-appengine] Re: help with array

2010-01-28 Thread johnP
One possibility: >>> a,b,c,= [1,2,3,4,5], [4,5,6,7,8], [4,5,99,88,77] >>> res = list(set([i for i in (a+b+c) if (a+b+c).count(i) >1])) >>> print res [4, 5] johnP On Jan 28, 2:48 pm, Robert Kluin wrote: > You might want to look at the "set" type in the standard library. > > Robert > > > > On Thu

Re: [google-appengine] Re: help with array

2010-01-28 Thread Robert Kluin
You might want to look at the "set" type in the standard library. Robert On Thu, Jan 28, 2010 at 2:41 PM, Adam wrote: > You might want to ask this over on comp.lang.python, as this is a > Python-specific question. It is not really related to AppEngine. > > On Jan 28, 2:28 pm, alf wrote: >

[google-appengine] How to add my article

2010-01-28 Thread phpDays
Hello GAE developers! I have add my own article about my AppEngine framework (http:// code.google.com/p/appengine-framework/). Please, tell me, how to add article to page http://code.google.com/appengine/articles/ Thanks! -- You received this message because you are subscribed to the Google Gro

Re: [google-appengine] Quota's

2010-01-28 Thread Ikai L (Google)
Hi Magnus, Yes, you're right. This is posted because we still track this quota even though it is impossible to exceed it (if you enable billing, your quota goes to a bit over 1 terabyte). If we ever increase the free incoming bandwidth quota, 4 gigabytes would be the limit of incoming URLFetch all

[google-appengine] Re: help with array

2010-01-28 Thread Adam
You might want to ask this over on comp.lang.python, as this is a Python-specific question. It is not really related to AppEngine. On Jan 28, 2:28 pm, alf wrote: > I forgotted to say. > > in more than 2 list. > > thanks > > On Jan 28, 8:03 pm, alf wrote: > > > > > we have two arrays > > > a=[a,b

[google-appengine] Re: help with array

2010-01-28 Thread alf
I forgotted to say. in more than 2 list. thanks On Jan 28, 8:03 pm, alf wrote: > we have two arrays > > a=[a,b,c,d,e] > > b=[x,c,e,w] > > I would like get a arry with only common value ej. > > res=[c,e] > > how can do it > > many tanks -- You received this message because you are subscribed

[google-appengine] Re: Cant get my www.mydomain.com to work with my APP

2010-01-28 Thread Navaratan Technologies
If you are having trouble verifying your domain, better consult a configuration expert. After you verify to map "www" naked domain, you need to delete the site mapping in the Sites Services page on google apps admin control panel. Let me know if you have any more questions. Regards, Google Apps C

[google-appengine] If we have global users, how is the quality of service in Europe, India, Australia

2010-01-28 Thread smwatch
Dear Members, We have global users, how is the quality of service in Europe, India, Australia Since a lot of our users come from different parts of the world, how do servers distribute the application, or still the application gets served from servers in Mountain View. How is the quality of serv

[google-appengine] help with array

2010-01-28 Thread alf
we have two arrays a=[a,b,c,d,e] b=[x,c,e,w] I would like get a arry with only common value ej. res=[c,e] how can do it many tanks -- 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...@

[google-appengine] Uploading more that 3000 files in a zip

2010-01-28 Thread JackF
Hiya, I need to upload and unpack around 60,000 files into app engine and at the moment I am getting the 3000 blog error. Googling around there seems to a way to get round this with packing the files up into 10mb (or less) zip files which you can then unpack into a directory once it is there. So,

[google-appengine] Re: Cant get my www.mydomain.com to work with my APP

2010-01-28 Thread lazycoder
Any luck thus far??? Even I am facing this issue -- 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+unsubsc

[google-appengine] Re: what is wrong of this info when uploading?

2010-01-28 Thread saintthor
i can access appengine.google.com with firefox while uploading fail. could it be some wrong with firewall/proxy? how to test it ? thanks On 1月28日, 下午10时28分, Wooble wrote: > urlopen is getting a Connection Refused error.  It could be that the > appengine server was down when you tried to connect

[google-appengine] Re: what is wrong of this info when uploading?

2010-01-28 Thread Wooble
urlopen is getting a Connection Refused error. It could be that the appengine server was down when you tried to connect, or you could be having firewall/proxy issues. On Jan 28, 9:05 am, saintthor wrote: > 2010-01-28 21:45:35 Running command: "['D:\\Python25\\pythonw.exe', 'D: > \\Program Files

[google-appengine] what is wrong of this info when uploading?

2010-01-28 Thread saintthor
2010-01-28 21:45:35 Running command: "['D:\\Python25\\pythonw.exe', 'D: \\Program Files\\Google\\google_appengine\\appcfg.py', '--no_cookies', u'--email=saintthor', '--passin', 'update', 'E:\\gst']" Application: smarthor; version: 0. Server: appengine.google.com. Scanning files on local disk. Initi