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

2008-10-29 Thread Jean-Lou Dupont
@kang: Thanks. I dropped a note on Freebase's help center... we'll see. jld. On Oct 28, 11:39 pm, kang [EMAIL PROTECTED] wrote: 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

[google-appengine] Re: Microsoft Azure

2008-10-29 Thread Andrew Badera
Yeah, somewhere between the beginning of that paragraph and end, I started mistyping. I do see where that IS the case, and that's kind of crazy ... but obviously part of the MS push toward Vista/2008/7 ... On Wed, Oct 29, 2008 at 12:57 AM, Andy Freeman [EMAIL PROTECTED] wrote: I didn't

[google-appengine] Re: Microsoft Azure

2008-10-29 Thread Ross Ridge
Andrew Badera wrote: I do see where that IS the case, and that's kind of crazy ... but obviously part of the MS push toward Vista/2008/7 ... I believe it stems from that fact SDK requires IIS 7.0, which is included in Windows Vista (and Server 2008) and isn't supported in Windows XP. It makes

[google-appengine] Re: Microsoft Azure

2008-10-29 Thread Sylvain
I've seen .aspx on google server (don't know if it was a MS server or just an extension) Google Apps survey forms are made with .aspx Sylvain On 29 oct, 15:03, My3 [EMAIL PROTECTED] wrote: I think you never saw .aspx extension on some google product web pages. First google needs to

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

2008-10-29 Thread chenbaiping
Or the remote server is down. _ 发件人: google-appengine@googlegroups.com [mailto:[EMAIL PROTECTED] 代表 kang 发送时间: 2008年10月29日 12:40 收件人: google-appengine@googlegroups.com 主题: [google-appengine] Re: DownloadError: ApplicationError: 2 ? the remote server has blocked GAE On Wed, Oct

[google-appengine] localized log time

2008-10-29 Thread Brian Silberbauer
Hi Is there any chance of getting localized time for the logs? Brian --~--~-~--~~~---~--~~ 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

[google-appengine] Accessing members of objects in a template

2008-10-29 Thread Dooferlad
Hi, I am a bit new to this python and app engine stuff, but the docs have failed me. I am trying to do something quite simple - display a list of items: class PageInfo: def __init__(self, url, hash, description): self.url = url self.hash = hash self.desctiption =

[google-appengine] Re: Will there ever be a DictProperty in datastore?

2008-10-29 Thread Dr. Ernie
I agree - in a couple of cases I have created dual lists in a model, rather than have the overhead of pickling. This has the bonus of allowing both key and value be searchable, but I'd love native dicts. +1 I'm considering sticking JSON in a field to deal with this problem, but native dicts

[google-appengine] A minor mistake in doc of Datastore API

2008-10-29 Thread an0
http://code.google.com/appengine/docs/datastore/transactions.html#Uses_For_Transactions Another common use for transactions is to update an entity with a named key, or create it if it doesn't yet exist: class SalesAccount(db.Model): address = db.PostalAddressProperty() phone_number =

[google-appengine] Django + GAE

2008-10-29 Thread Daniel Larkin
Hi all, I'd like to use Django on GAE for a small project. Ideally I'd like to use version 1.0 of Django rather than 0.96, and I'm aware there are various patches and helper scripts etc to make this possible. Yet, these approaches seem less than straight-forward (perhaps I'm incorrect there? I

[google-appengine] Google Apps Labs / Solutions Marketplace

2008-10-29 Thread Anthony
Hi I've just seen this: http://googleenterprise.blogspot.com/2008/10/google-apps-goes-experimental-with.html I'm building an app that can be installed on multiple domains, the plan was to keep the App hosted in our account and manage data, billing etc. internally by looking at the host the

[google-appengine] Re: A minor mistake in doc of Datastore API

2008-10-29 Thread Dan Sanderson
Good catch! You're right, the code sample does not match the description. The intent was for the new object to be created with a key name based on account_id. I'll fix it. Thanks! -- Dan On Wed, Oct 29, 2008 at 2:17 AM, an0 [EMAIL PROTECTED] wrote:

[google-appengine] Re: File download from datastore

2008-10-29 Thread Sergey Klevtsov
thanks, i realized my mistake, still I can't make it right. Now I'm doing it like self.response.headers['Content-Disposition'] = attachment; filename*=utf-8 ' ' + fileinfo.filename.encode('utf-8') (there are no spaces there, I just added them for better visibility of single quotes) trying to

[google-appengine] Re: Google Apps Labs / Solutions Marketplace

2008-10-29 Thread Roberto Saccon
I am in a similar situation as Anthony and also would appreciate some answers to those questions. Of course I understand that you cannot give exact details, nor timeline and I know what is already in the roadmap published. regards Roberto On Oct 29, 2:38 pm, Anthony [EMAIL PROTECTED] wrote: Hi

[google-appengine] Re: Django + GAE

2008-10-29 Thread Dan Sanderson
I'd recommend Django 1.0 along with the Helper or something similar. You could use Django without the Helper if you accommodate some of the import technicalities, the Helper just makes it easier. This article discusses using Django without the Helper (though I'm not sure if the article works out

[google-appengine] Re: Data Viewer gives Server Error when I want to edit an object, after extending the Model Kind

2008-10-29 Thread Marzia Niccolai
Hi, I don't think this is related to that issue. It seems this may be related to schema caching in the admin console. Is this still an issue for you now? If so, can you provide the app id and kind so that I can further investigate? -Marzia On Wed, Oct 29, 2008 at 12:20 AM, djidjadji [EMAIL

[google-appengine] Re: Microsoft Azure

2008-10-29 Thread Andrew Badera
Per Mike Amundsen: Azure SDK has UI/virutal bits that require Server 2008 or Vista. however APIs are all HTTP - no SDK required. Thanks- - Andy Badera - [EMAIL PROTECTED] - (518) 641-1280 - http://higherefficiency.net/ - http://changeroundup.com/ - http://flipbitsnotburgers.blogspot.com/ -

[google-appengine] Re: Accessing members of objects in a template

2008-10-29 Thread sjudd
It needs to be item.url On Oct 29, 12:02 pm, Dooferlad [EMAIL PROTECTED] wrote: Hi, I am a bit new to this python and app engine stuff, but the docs have failed me. I am trying to do something quite simple - display a list of items: class PageInfo:     def __init__(self, url, hash,

[google-appengine] Re: Django + GAE

2008-10-29 Thread Adam Fisk
I highly recommend app engine patch. It's a much more active project than app engine helper, and it works really well. -Adam On Oct 29, 10:04 am, Dan Sanderson [EMAIL PROTECTED] wrote: I'd recommend Django 1.0 along with the Helper or something similar.  You could use Django without the

[google-appengine] Re: Tips on Optimizing Writes?

2008-10-29 Thread Jeff S
Hi Waldemar, On Oct 28, 3:22 pm, Waldemar Kornewald [EMAIL PROTECTED] wrote: Hi Jeff, On 28 Okt., 21:11, Jeff S [EMAIL PROTECTED] wrote: Our queries and indices are rather simple. I should clarify: The particular problem I'm talking about is a view that currently has a response

[google-appengine] Re: Accessing members of objects in a template

2008-10-29 Thread Dooferlad
Thanks guys. My brain seemed to need a break... I am supposed to be on holiday - now I know why! On Oct 29, 4:58 pm, sjudd [EMAIL PROTECTED] wrote: It needs to be item.url On Oct 29, 12:02 pm, Dooferlad [EMAIL PROTECTED] wrote: Hi, I am a bit new to this python and app engine stuff, but

[google-appengine] Re: gdata calendar interface

2008-10-29 Thread Jeff S
Hi Mike, I'm not sure what you mean by the two interfaces. Could you describe these in more detail? As far as using the Google Calendar Data API from within App Engine, I have some sample code if you are interested. Happy coding, Jeff On Oct 28, 2:46 pm, Mike Metcalfe [EMAIL PROTECTED] wrote:

[google-appengine] Re: Django + GAE

2008-10-29 Thread Daniel Larkin
Yes I understand that, though that doesn't overly bother me. From the opinion of others I think maybe its worth trying out the gae patch. On Oct 29, 6:42 pm, Arash [EMAIL PROTECTED] wrote: Unfortunately you will not get Django's scaffolded admin interface in none of them On Oct 29, 1:52 pm,

[google-appengine] Re: Django + GAE

2008-10-29 Thread yejun
All of them are monkey patchs, which means it may break when you do an upgrade. For simple project I think the buildin webapp frameworks should works as well. On Oct 29, 12:24 pm, Daniel Larkin [EMAIL PROTECTED] wrote: Hi all, I'd like to use Django on GAE for a small project. Ideally I'd

[google-appengine] Re: gdata calendar interface

2008-10-29 Thread Mike Metcalfe
Hi Jeff, 2008/10/29 Jeff S [EMAIL PROTECTED] I'm not sure what you mean by the two interfaces. Could you describe these in more detail? The only python development I've done before is using Zope and Plone which allow interface classes and the base classes have an 'implements' method. This

[google-appengine] email templates

2008-10-29 Thread faemino
Hi to all. I have read API and searching in this group about how to send emails using a template without any solution or idea. Are there some way to do that? maybe there aren't this feature in GAE and I need do it with django way, it's possible? Thanks for advance. faemino

[google-appengine] Re: Having trouble using my own domain name with app engine

2008-10-29 Thread Chris McAvoy
I'm having this problem as well. I have a CNAME record pointing at the www subdomain of my domain, but can't add it as a subdomain for my appengine app. On Sep 13, 5:48 pm, dennisM [EMAIL PROTECTED] wrote: I finally went to mydomainregistrar, GoDaddy.com, and deleted thewww.mydomain.com.

[google-appengine] HTTP header length limit

2008-10-29 Thread Will Norris
I recently downloaded the source code for the example openid-consumer application[0]. In trying to get it working, I noticed that the Location header was often not being sent in the response when running the app on AppEngine, although it was fine running on localhost. Further investigation

[google-appengine] Re: Filter by first letter? LIKE Statements?

2008-10-29 Thread David Symonds
On Wed, Oct 29, 2008 at 3:38 PM, Kenchu [EMAIL PROTECTED] wrote: How do you filter things by for example their first letter? Take this model for example: class Song(db.Model): title = db.StringProperty() How would I get all the songs beginning with the letter A? You can't (yet). Add a

[google-appengine] Why Megabytes Stored did not decrease after I cleared my datastore?

2008-10-29 Thread heavyz
Hi, there, I created a webapp on GAE, and for testing purpose, i inserted quite a lot of data in the datastore. Then after my test, i cleared my datastore and planned to create a more serious webapp. But, in the GAE admin console, i noticed that the Megabytes Stored did not decrease. I thought

[google-appengine] Re: email templates

2008-10-29 Thread David Symonds
On Wed, Oct 29, 2008 at 1:46 PM, faemino [EMAIL PROTECTED] wrote: I have read API and searching in this group about how to send emails using a template without any solution or idea. Are there some way to do that? maybe there aren't this feature in GAE and I need do it with django way, it's

[google-appengine] Re: HTTP header length limit

2008-10-29 Thread Ross Ridge
Will Norris wrote: Further investigation revealed that all headers are being removed from the HTTP response if the total length of the header (name, colon, space, and value) exceeds 498 characters. Like I said, this is only happening on the production AppEngine, not when running from

[google-appengine] Re: Filter by first letter? LIKE Statements?

2008-10-29 Thread yejun
http://code.google.com/appengine/docs/datastore/queriesandindexes.html Read the first tip section. On Oct 29, 6:38 pm, Kenchu [EMAIL PROTECTED] wrote: How do you filter things by for example their first letter? Take this model for example: class Song(db.Model):   title =

[google-appengine] How to update script if I don't have code base

2008-10-29 Thread A.TNG
Hi, Usually, we can use appcfg.py upload app to upload script files and static files. But I meet following situation and I don't know how to deal with it. I develop an app at home on my own laptop. Then, I go to office. I find out something wrong with my script and I want to fix it. But I don't

[google-appengine] redirecting to myapp.appspot.com

2008-10-29 Thread manuelaraoz
Hi there! I have this question, which I don't know if it's appropriate to ask here. suppose I have my google app engine application: myapp, which is served in myapp.appspot.com I also own a domain name, for example, www.manuelaraoz.com I own the name, and only the name ( I don't have a hosted

[google-appengine] Re: Why Megabytes Stored did not decrease after I cleared my datastore?

2008-10-29 Thread Alexander Kojevnikov
Star this issue: http://code.google.com/p/googleappengine/issues/detail?id=452 On Oct 30, 11:48 am, heavyz [EMAIL PROTECTED] wrote: Hi, there, I created a webapp on GAE, and for testing purpose, i inserted quite a lot of data in the datastore. Then after my test, i cleared my datastore and

[google-appengine] Re: redirecting to myapp.appspot.com

2008-10-29 Thread Chenqun Hang
You can try to bind your domain name (www.XXX.com) to yyy.appspot.com by using the Google Apps. 2008/10/30 manuelaraoz [EMAIL PROTECTED] Hi there! I have this question, which I don't know if it's appropriate to ask here. suppose I have my google app engine application: myapp, which is

[google-appengine] Re: redirecting to myapp.appspot.com

2008-10-29 Thread Alexander Kojevnikov
You need to use Google Apps: http://code.google.com/appengine/articles/domains.html http://www.google.com/support/a/bin/answer.py?hl=en-inanswer=61057 On Oct 30, 2:16 pm, manuelaraoz [EMAIL PROTECTED] wrote: Hi there! I have this question, which I don't know if it's appropriate to ask

[google-appengine] Re: Tips on Optimizing Writes?

2008-10-29 Thread Josh Heitzman
Jeff you said: The CPU warning in the log is based on runtime CPU, while the displayed CPU warning in the log is based on runtime and datastore CPU. but you wrote in the log is based on both times. I'd assume one of those is type, so could you clarify which if the mcycle consumption value

[google-appengine] Help with first app engine project.

2008-10-29 Thread Grout58
import cgi from google.appengine.ext import db from google.appengine.api import users from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app class Serial(db.Model): game = db.StringProperty(required=True) serial =

[google-appengine] Policy on Adult Content

2008-10-29 Thread Pete
Hi, I've looked through the TC, and I'm pretty sure the application I'd like to run is allowable, but I was wondering if anyone could back this up... I'm writing a search engine that indexes adult content - specifically pornographic images and videos. The site would link to other sites, rather

[google-appengine] Re: How to update script if I don't have code base

2008-10-29 Thread David Symonds
On Wed, Oct 29, 2008 at 7:03 PM, A.TNG [EMAIL PROTECTED] wrote: Usually, we can use appcfg.py upload app to upload script files and static files. But I meet following situation and I don't know how to deal with it. I develop an app at home on my own laptop. Then, I go to office. I find out

[google-appengine] Re: Help with first app engine project.

2008-10-29 Thread David Symonds
On Wed, Oct 29, 2008 at 4:59 PM, Grout58 [EMAIL PROTECTED] wrote: class Insert(webapp.RequestHandler): def post(self): serial = Serial() You've just attempted to create an invalid Serial entity. The 'required=...' validation happens at creation time, not put time. You should do