Re: [google-appengine] Re: App Engine For Business

2010-05-20 Thread Jesaja Everling
According to the FAQ, per user really means per intranet user here: You can also use App Engine for Business to build external applications. We’re still working out the details on pricing so stay tuned (but don’t worry, you won't have to pay per user!).

Re: [google-appengine] Re: Why i don't use Google App Engine... and don't recomend it to you

2010-02-14 Thread Jesaja Everling
to another computer or something like dropbox. Best Regards, Jesaja Everling On Sun, Feb 14, 2010 at 6:08 PM, Stephen sdea...@gmail.com wrote: On Feb 14, 10:54 am, Danny Tuppeny da...@tuppeny.com wrote: There have always been two things that stopped me using Git/Github. I do like Git (I use GitX

Re: [google-appengine] Re: how large data can i use in App Caching and how long will it be cached?

2010-02-13 Thread Jesaja Everling
The way I understand it, everything that is defined inside the main() function in the handler is also not cached. Thus you can still have your handler script cached, and have request-specific objects evaluated for each new request. Best Regards, Jesaja Everling On Sat, Feb 13, 2010 at 6:52 PM

Re: [google-appengine] Is redeployment possible?

2010-02-11 Thread Jesaja Everling
Hi Rajalakshmi, just deploy again. For example, execute appcfg.py update . in the project directory. Or if you develop with Java, use the mechanism in Eclipse to deploy your project. It will automatically update all your files on the production server. Best Regards, Jesaja Everling On Thu

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 j...@thinkwave.com 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

Re: [google-appengine] www.winebythebar.com going to sites instead of appengine suddenly

2009-12-27 Thread Jesaja Everling
this helps. No idea why it worked before and changed. Best Regards, Jesaja Everling On Sun, Dec 27, 2009 at 4:22 PM, Thomas McKay - www.winebythebar.com thomasfmc...@gmail.com wrote: I'm not sure where I should be asking for help for this. I've started a thread here:   http://www.google.com

Re: [google-appengine] GAE tools poll

2009-12-17 Thread Jesaja Everling
I use Eclipse with Pydev. I second Adams request for a graphical designer. Not absolutely necessary, but a nice tool in my opinion. Best Regards, Jesaja Everling On Thu, Dec 17, 2009 at 4:41 PM, Joshua Smith joshuaesm...@charter.net wrote: Python / Emacs. (When I write Java, I also use Emacs

Re: [google-appengine] Java or Python; Which should I recommend to others who are very sensitive to costs?

2009-12-15 Thread Jesaja Everling
part of what Unladen Swallow is meant for. A very interesting observation, though! Best Regards, Jesaja Everling On Tue, Dec 15, 2009 at 7:34 PM, Michael Langford michael.langf...@gmail.com wrote: If your app exceeds free quota, this deference can impact total amount of costs significantly

Re: [google-appengine] Is it possible to deploy Wave server on GAE ( will it be wihin free limits)

2009-12-08 Thread Jesaja Everling
I have the feeling that Nick uses more than his 100% time to help users and to improve App Engine. All of this is/will be open source, so why don't you try porting it yourself? :) On Tue, Dec 8, 2009 at 4:48 PM, Joshua Smith joshuaesm...@charter.net wrote: Perhaps you should port it, Nick!  Use

Re: [google-appengine] Cloud

2009-11-11 Thread Jesaja Everling
have to have the same runtime! It's perfectly fine to have one version of an app using the Java runtime and another version of the same app using the Python runtime. So I would say the answer is yes. In this case both languages can even access the same datastore. Best Regards, Jesaja Everling

[google-appengine] Re: What is the equivalent way of doing it in django?

2009-01-30 Thread Jesaja Everling
in action and have a look at the source code to see how it works. I don't know if I have answered your question, it was a bit general... Best Regards, Jesaja Everling On Fri, Jan 30, 2009 at 1:54 PM, arnie parvez...@rediffmail.com wrote: Using webapp framework, I have created a class

[google-appengine] Re: What is the equivalent way of doing it in django?

2009-01-30 Thread Jesaja Everling
You are welcome! Setting the Content-Type header works a little different in Django. You can either specify it when you construct a HttpResponse object ourself: from django.http import HttpResponse def myview(request): response = HttpResponse(content_type=text/xml) return response When using

[google-appengine] Re: use stored string key to get an entity

2008-12-22 Thread Jesaja Everling
Hi Shay! Did you try to use ReferenceProperty? transaction = db.ReferenceProperty(Transaction) Best Regards, Jesaja Everling On Mon, Dec 22, 2008 at 11:09 PM, Shay Ben Dov shay.ben...@gmail.com wrote: Hi this is the issue I have a Transaction model I do: transaction=Transaction

[google-appengine] Re: form.as_p

2008-12-21 Thread Jesaja Everling
Hi, I think you mean {{form.first_name.label}} and {{form.first_name}} ?! On Sun, Dec 21, 2008 at 7:28 PM, Thomas thomas.pels...@googlemail.com wrote: Hi yinDojo, I'm not sure, if I understood your problem. You have a template like this - lets call it index.html --- html body

[google-appengine] Re: App name error ...

2008-12-18 Thread Jesaja Everling
Hi! This is due to the fact that App Engine apps share the gmail namespace. That means that if you already have a gmail-account registered, you cannot register an app with the same name. For example, I couldn't register jeverling. Best Regards, Jesaja Everling On Thu, Dec 18, 2008 at 8:52 PM

[google-appengine] Re: App name error ...

2008-12-18 Thread Jesaja Everling
at 11:48 PM, Webweave webwe...@gmail.com wrote: So there's somebody out there using my company name as a gmail account On Dec 18, 11:59 am, Jesaja Everling jeverl...@gmail.com wrote: Hi! This is due to the fact that App Engine apps share the gmail namespace. That means that if you

[google-appengine] Re: sendmail program

2008-12-17 Thread Jesaja Everling
. It will automatically use Googles mail-infrastructure then. Getting sendmail to work on Windows might be possible, but I can imagine it will be quite hard. Best Regards, Jesaja Everling On Wed, Dec 17, 2008 at 2:55 PM, Nora noorhanab...@yahoo.co.uk wrote: Hello, I am using GAE sdk on windows, can

[google-appengine] Re: Difficulty Serving Static Image with static_files handler

2008-12-16 Thread Jesaja Everling
AFAIK, OSX is not case sensitive, while it is case preserving. One more reason to use linux! :P On Tue, Dec 16, 2008 at 7:09 PM, Dylan Lorimer write2dy...@gmail.com wrote: Yes, as embarrassing as it is, case sensitivity was the problem. This stumped me for literally 3 days! Why would it not

[google-appengine] Re: Django+Appengine vs Appengine

2008-12-15 Thread Jesaja Everling
Regards, Jesaja Everling On Mon, Dec 15, 2008 at 8:58 AM, Bobby bobbysoa...@gmail.com wrote: Group, i'm starting work on an AppEngine site and i was going to use Django (i haven't used it before), i went through the Django docs and i saw lots of useful features but many exist already

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

2008-12-06 Thread Jesaja Everling
, and not when deployed... Not much help, but I tried! ;) Best Regards, Jesaja Everling On Sat, Dec 6, 2008 at 10:51 AM, flu xius [EMAIL PROTECTED] wrote: This is the code HTML to submit a form in MainPage Class : self.response.out.write( form action=/sign method=post

[google-appengine] Re: How do i can clear Data Base in google server?

2008-12-02 Thread Jesaja Everling
Hi Alakat, there are probably better ways, but I always use the Data Viewer in the admin console. http://appspot.com If you check the box on top of the list of entities, it selects all. This is of course not practical for a large number of entities. Best Regards, Jesaja Everling On Tue, Dec

[google-appengine] Re: Embedding VRML

2008-11-30 Thread Jesaja Everling
Hi Kieran, I think it should work if you put your *.wrl-files in the static-directory: app.yaml: handlers: - url: /media static_dir: media html: EMBED SRC=/media/cube.wrl Best Regards, Jesaja Everling On Sun, Nov 30, 2008 at 10:57 PM, Kieran [EMAIL PROTECTED] wrote: Hello I am

[google-appengine] Re: Get time in milliseconds for later use in javascript

2008-11-30 Thread Jesaja Everling
Hi Peter, maybe this helps: http://www.djangosnippets.org/snippets/387/ I have used it before, worked fine. Best Regards, Jesaja Everling On Sun, Nov 30, 2008 at 11:17 PM, Peter [EMAIL PROTECTED] wrote: Hi folks, I want to generate a integer that represents the current date so that I

[google-appengine] Re: Is it possible to send emails from App Engine via non Google SMTP?

2008-11-29 Thread Jesaja Everling
the confirmation link one more time once your google account is created. SMTP is not possible, because you can only make http and https connections to port 80 and port 443 respectively. Best Regards, Jesaja Everling On Sat, Nov 29, 2008 at 2:42 AM, David Symonds [EMAIL PROTECTED] wrote: On Fri

[google-appengine] Re: File permission ....

2008-11-28 Thread Jesaja Everling
... Best Regards, Jesaja Everling On Fri, Nov 28, 2008 at 4:04 PM, Nora [EMAIL PROTECTED] wrote: Hello, I am working on windows. I had some code developed in python in a directory called 'python25'. I have copied this code to a new folder on the google_appengine folder . So, now I have all my

[google-appengine] Re: File permission ....

2008-11-28 Thread Jesaja Everling
the first nora.py! It seems that there is an inheritance somehowif I try to copy the child, I end up with the parent file. I hope this is clearer now. Thank you very much. On Nov 28, 4:02 pm, Jesaja Everling [EMAIL PROTECTED] wrote: Hello Nora, to be honest, I don't really

[google-appengine] Re: File permission ....

2008-11-28 Thread Jesaja Everling
it anywhere, there is no problem. The problem occurs only if you tend to copy a file from c:\python25 straight to google_appengine. Any clues? Thanks a lot. On Nov 28, 5:16 pm, Jesaja Everling [EMAIL PROTECTED] wrote: Hi Nora, the nora.py in c:\python25 will always be used, because it is in your

[google-appengine] Re: Using field key_name in djangoforms

2008-11-26 Thread Jesaja Everling
, name, value) Maybe the field should rather be removed from the form, then. Best Regards, Jesaja Everling On Wed, Nov 26, 2008 at 10:35 AM, Denya [EMAIL PROTECTED] wrote: No, i mean a little bit another thing. When i open page with form and want to edit some data (it means that i create form

[google-appengine] Re: declaration precedence in models.py

2008-11-25 Thread Jesaja Everling
or other objects before using them. Best Regards, Jesaja Everling On Tue, Nov 25, 2008 at 9:22 AM, p0windah [EMAIL PROTECTED] wrote: I am using Djang0 1.0 with appengine and have bumped up against an odd thing. The order in which models are declared makes a difference. Using the models.py you

[google-appengine] Re: Using field key_name in djangoforms

2008-11-25 Thread Jesaja Everling
, or you can make another form definition that excludes the field. Do I understand you correctly that the key_name field doesn't appear when you are editing an entity? Well, than thats probably on purpose. Best Regards, Jesaja Everling would have to create a separate form for editing On Tue, Nov

[google-appengine] Re: Running asynchronous scripts

2008-11-24 Thread Jesaja Everling
/googleappengine/issues/detail?id=6 In the comments there are a few workarounds. This kind of functionality is not officially supported by Appengine at the moment, because each process has to be finished after a few seconds. Best Regards, Jesaja Everling On Mon, Nov 24, 2008 at 5:56 PM

[google-appengine] Re: Version Problems

2008-11-23 Thread Jesaja Everling
Not us, Google can with their SDK! ;) On Sun, Nov 23, 2008 at 9:03 PM, Faber Fedor [EMAIL PROTECTED] wrote: Waitaminnit! We can do minor versioning?! Every time I put a non-integer value for version in my app.yaml file, I get a regex error. Reading the regex, it looks like it wants only

[google-appengine] Re: Destroyed a whole site

2008-11-21 Thread Jesaja Everling
to a repository on an independent server from time to time you should be safe from harddrive crashes and similar events. Sorry that I can't help you better... Best Regards, Jesaja Everling On Fri, Nov 21, 2008 at 10:59 AM, oli [EMAIL PROTECTED] wrote: start from scratch, work 10x faster than normal

[google-appengine] Re: Environment variable DJANGO_SETTINGS_MODULE is undefined

2008-11-17 Thread Jesaja Everling
. Best Regards, Jesaja Everling On 17 Nov., 05:35, Chris [EMAIL PROTECTED] wrote: I'm running a basic webapp install, but where ever my code imports google.appengine.ext.db.djangoforms or django.newforms I'm getting the error Environment variable DJANGO_SETTINGS_MODULE is undefined. Since

[google-appengine] Re: creating a db.Model with a non-existent parent

2008-11-16 Thread Jesaja Everling
you want by using: b1 = B(key_name='andy', parent=db.get(parent)) Best Regards, Jesaja Everling 2008/11/16 Andy Freeman [EMAIL PROTECTED]: In http://code.google.com/appengine/docs/datastore/keysandentitygroups.html You can create an entity with an ancestor path without first creating

[google-appengine] Re: Max-age less than specified in app.yaml

2008-11-14 Thread Jesaja Everling
Hello Anders, maybe this thread helps? http://groups.google.com/group/google-appengine/browse_thread/thread/bcdacfaac673181a Best Regards, Jesaja Everling 2008/11/14 Anders [EMAIL PROTECTED]: When the expiration attribute is set in the app.yaml file then the Cache-Control header still has

[google-appengine] Re: sdk download problem

2008-11-14 Thread Jesaja Everling
the installer package: http://code.google.com/p/googleappengine/downloads/list Best Regards, Jesaja Everling 2008/11/14 lws68825 [EMAIL PROTECTED]: I tried to download the latest appengine sdk 1.1.5. but the download always stopped at the 82% point of the process. Can someone help me