[google-appengine] Re: gae transparent icon / gif we may use and flexible reply-to email handling

2009-12-28 Thread niklasro.appspot.com
looking for transparent gif like http://code.google.com/appengine/docs/python/images/transform_resize_after.jpg either ditching the idea, getting go ahead converting the white bg, or accessing via filter welcoming any advice. -- You received this message because you are subscribed to the Google G

[google-appengine] Re: How to send massive emails and avoid being suspended?

2009-12-28 Thread niklasro.appspot.com
On Dec 23, 8:30 am, Krystox wrote: > We have a service to let user to send greeting cards to their friends. > Soon we realize people might mark those emails as spam. As a result, > the account used to do mail.send() is easily suspended for abuse. > > My question is GAE mail quota allows sending th

Re: [google-appengine] Re: groc module

2009-12-28 Thread Wesley Chun
peter, i have no doubts that your Python 2.6 is working via the cmd-line. i'm just not convinced that your App Engine code is executing that same version. robert will know this as well, but it is a well-known problem users installing/upgrading Python on a Mac. it's even hard to Google for, but he

[google-appengine] Re: WWW mapping for AppEngine

2009-12-28 Thread Duong BaTien
The problem is now solved by creating a new dbgroups3 and follow instructions in this post: http://www.google.com/support/forum/p/Google +Apps/thread?tid=66513228ad68b941&hl=en On Mon, 2009-12-28 at 11:16 -0700, Duong BaTien wrote: > Hi: > > I messed up my www mapping in google apps for appengine

[google-appengine] Re: groc module

2009-12-28 Thread Peter Behr
Well, it looks like the darndest thing. First off, here's the path from within Python (and it has remained unchanged through all of the events below). Python 2.6.1 (r261:67515, Jul 7 2009, 23:51:51) [GCC 4.2.1 (Apple Inc. build 5646)] on darwin Type "help", "copyright", "credits" or "license" for

Re: [google-appengine] Cannot redirect

2009-12-28 Thread Wesley Chun
greetings! how are you calling into your code? based on the code you posted below, it does not look like it will even compile. (there is an extra ")" at the end of your class definition.) also, you have created a post() method. did you invoke your application using POST (or GET)? if the latter, t

Re: [google-appengine] How to send massive emails and avoid being suspended?

2009-12-28 Thread Wesley Chun
greetings! the email service we provide is exactly as you have stated. there is a daily quota, and an additional quota for billed customers. unfortunately, it is not under our control as to whether or not your messages are marked as abuse -- that is up to each internet provider which hosts inbox r

Re: [google-appengine] Re: groc module

2009-12-28 Thread Robert Kluin
Hey Peter, I am running OSX 10.6.2 + Python 2.6 too. No issues here. Like Wesley I am curious about 3.1 being in your path. My path looks like: ~$ echo $PATH /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/texbin:/usr/X11/bin Have you tried to run: ~$ python --version Python 2.6.1 Maybe y

Re: [google-appengine] Updating an object fails when accessing application through Twilio

2009-12-28 Thread Ikai L (Google)
I'm not familiar with Twilio. Is it their client that is doing the GET or POST? It's possible they are not passing the parameters correctly if it works for you in a normal browser connected directly to your application. Can you log the incoming parameters and URI string with their request on the se

Re: [google-appengine] unable to create a second app; wants me to redo sms verification

2009-12-28 Thread Ikai L (Google)
Brian, Can you add yourself to the SMS whitelist? We'll manually verify you:. https://appengine.google.com/waitlist/sms_issues On Sat, Dec 26, 2009 at 10:25 PM, brian wrote: > So... > > I have one app set up in appengine. Now I want to add a second one. > But when I click on "Create an Applicat

Re: [google-appengine] Re: how to make Set persistent?

2009-12-28 Thread Ikai L (Google)
This actually sounds like it is working correctly. makePersistent() is the "save" call. You should not be calling this until all the changes you intend on making have been made to the object you are persisting. Another option you have is to detach the object, but this has its own gotchas as well.

Re: [google-appengine] Re: groc module

2009-12-28 Thread Wesley Chun
hmmm, i'm kind of at a loss on this one. i am a little bit suspicious at the Python 3.1 though, esp. since it shows up at the beginning of your path. what happens when you type "env python" into your shell? also, what shows up when you do "which python"? does anyone else out there in the cloud use

Re: [google-appengine] Indexes not updated (manually or automatically)

2009-12-28 Thread Ikai L (Google)
Do you have a query that uses this index? The development server will automatically update app.yaml for any indexes that your application requires. When uploaded to production, these indexes will be automatically built. On Wed, Dec 23, 2009 at 1:01 AM, Gayle Laakmann wrote: > Google App Engine i

[google-appengine] Re: groc module

2009-12-28 Thread Peter Behr
And my default version of python is still 2.6, despite the 3.1 in the path, but perhaps that might be a problem. However, I've run GAE successfully before with 3.1 installed. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this g

[google-appengine] Re: groc module

2009-12-28 Thread Peter Behr
Well, here's the result. ~ $ echo $PYTHONPATH ~ $ echo $PATH /Library/Frameworks/Python.framework/Versions/3.1/bin:/usr/bin:/bin:/ usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/texbin:/usr/X11/ bin ~ $ appcfg.py /usr/local/bin/appcfg.py:41: DeprecationWarning: the sha module is deprecated

Re: [google-appengine] Re: groc module

2009-12-28 Thread Wesley Chun
ok, well that's good to know that it's still there. i'm kinda of stumped too. can you try one thing for me? 1) undo the manual setting of PYTHONPATH and "echo $PYTHONPATH" 2) "echo $PATH" so we can see what you're accessing 3) run appcfg.py by itself with no args post your results here. just a mi

[google-appengine] Re: groc module

2009-12-28 Thread Peter Behr
Hi Wesley, thanks for the reply. > can you doublecheck that directory to ensure that it's still there? > unfortunately, i only have 2.5 on my machine so i can't confirm > whether it works (or doesn't) in 2.6. Yup, it's all there: /usr/local/google_appengine/google/appengine/cron $ ls total 280 d

Re: [google-appengine] groc module

2009-12-28 Thread Wesley Chun
greetings peter! you shouldn't need to mess with the PYTHONPATH variable as that should be set for you when you install the SDK. how are you running appcfg.py? it automagically amends Python's path internally to give you access to all of App Engine's modules. in particular, in your traceback dump

[google-appengine] Re: Need Help with Datastore Query

2009-12-28 Thread Ms. Jen
I tried the Meta and DjangoForms and it still did not work. On another attempt, I tried this with the Meta & djangoforms: id = int(self.request.get('id')) band_id = Band.getBandByID(id) query = Band.gql("WHERE ID = :1", 'band_id') band_edit = query.get() self.respon

Re: [google-appengine] Can't use dashboard

2009-12-28 Thread Ikai L (Google)
Any chance you remember the app ID you used to create the app? On Tue, Dec 22, 2009 at 11:52 PM, CodeRedSportsAdmin < ad...@coderedsports.com> wrote: > Site is www.coderedsports.com, which is still running. I haven't made > updates to it in awhile. I can't remember what google account I > used.

[google-appengine] WWW mapping for AppEngine

2009-12-28 Thread Duong BaTien
Hi: I messed up my www mapping in google apps for appengine. When dbgroups1.appspot.com of AppEngine mapped to http://www.dbgroups.com was directed to http://sites.google.com/a/dbgroups.com/www/ I try to solve the issue by: 1) deactivate the sites in google apps for dbgroups.com 2) deactivate,

[google-appengine] groc module

2009-12-28 Thread Peter Behr
I'm getting a very frustrating problem lately with appcfg.py on OS X 10.6.2 with the default install of Python 2.6. The module 'groc' (to which I find only the most cursory of references in resources online) seems to be gone. I've checked to see if this is a problem with PYTHONPATH not having /usr/

Re: [google-appengine] ApiProxy class - needed for unit testing

2009-12-28 Thread Bill Allocca
That worked. Thanks! - Bill On Mon, Dec 28, 2009 at 7:21 AM, m seleron wrote: > Hi. > > I confirmed its environment. > The file : in SDK1.3.0. > [appengine-local-runtime-shared.jar] > I think that com.google.apphosting.api.ApiProxy exists. > > Please look for. > > It might have that the proble

Re: [google-appengine] ApiProxy class - needed for unit testing

2009-12-28 Thread m seleron
Hi. I confirmed its environment. The file : in SDK1.3.0. [appengine-local-runtime-shared.jar] I think that com.google.apphosting.api.ApiProxy exists. Please look for. It might have that the problem by there are certainly document and a difference. Thanks. 2009/12/28 Bill Allocca : > Does anyo

[google-appengine] ApiProxy class - needed for unit testing

2009-12-28 Thread Bill Allocca
Does anyone know which jar file has the class com.google.apphosting.api.ApiProxy? It's needed for unit testing as per this doc: http://code.google.com/appengine/docs/java/howto/unittesting.html The ApiProxy class does not seem to be defined in appengine-api-stubs.jar or appengine-local-runtime.j

[google-appengine] TyphoonAE 0.1.1 released

2009-12-28 Thread Tobias
Hi all, It's my pleasure to announce that we released TyphoonAE 0.1.1 today. TyphoonAE now supports the Google App Engine SDK 1.3.0 for Python and of course comes with a Blobstore. To get an overview of how it works visit http://code.google.com/p/typhoonae/wiki/TyphoonAEBlobstore in our Wiki. For

[google-appengine] Re: What's the best way to back up data on Google App Engine?

2009-12-28 Thread mably
Hi, If you want good backup/restore tools for GAE, please vote for issue http://code.google.com/p/googleappengine/issues/detail?id=776 François On 27 déc, 10:56, John Maxwell IV wrote: > Google itself provides two solutions. > > http://code.google.com/appengine/docs/python/tools/uploadingdata.h

Re: [google-appengine] logging debug on dev appserver

2009-12-28 Thread djidjadji
Look in the window where you are running the dev-server. The logging messages are printed there. 2009/12/27 dhruvg : > is there a way to view logs on the development server? > i am using the standard logging framework, but currently, i need to > upload my app to the web to see the logs in the admi