[google-appengine] Re: Reading from a static text file

2009-03-16 Thread djidjadji
Why don't you put the file in the datastore. You can put it on a word basis, one object for every word, db.StringProperty. Use the datastore index to find the word. Use bulk_upload to fill the datastore. Or split it up in parts, each part starting with a different character. Put it in

[google-appengine] Re: sending email from your development server

2009-03-16 Thread NguyendHEX
It supports both SMTP and sendmail I am using following command line: dev_appserver.py --smtp_host=IP --smtp_port=25 --smtp_user=username -- smtp_password=pass N:\SoftStore\Online\app On Mar 16, 7:43 am, Ronn Ross ronn.r...@gmail.com wrote: Can you send email from your dev server? I'm trying

[google-appengine] Re: sending email from your development server

2009-03-16 Thread djidjadji
It's all in the docs of appengine [1] [1] http://code.google.com/appengine/docs/python/tools/devserver.html#Using_Mail --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group,

[google-appengine] Re: Read file as String..?

2009-03-16 Thread jago
Why should I make sure it is not an HTML file. It actually may be one in some cases. Is this bad? On Mar 16, 1:34 am, djidjadji djidja...@gmail.com wrote: Make sure it's not a static HTML file file = open('blabla.html') content = file.read() file.close() 2009/3/16 jago

[google-appengine] Re: Read file as String..?

2009-03-16 Thread djidjadji
Static files are stored differently on GAE. You can't open them in your python code. --~--~-~--~~~---~--~~ 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] Re: A question for Jaiku's developers, if they're watching..

2009-03-16 Thread Dan Sanderson
The XMPP support mentioned on the roadmap does not include BOSH. -- Dan On Sun, Mar 15, 2009 at 6:14 PM, David Wilson d...@botanicus.net wrote: 2009/3/15 thuan nunob...@gmail.com: I know the topic is more about microblogging services than xmpp, but by chance, have somebody achieved to

[google-appengine] Re: SDK 1.1.9 breaks google-app-engine-django?

2009-03-16 Thread Michael O'Brien
The zip hasn't been updated in a while, so you'll need to get the latest version from subversion: http://code.google.com/p/google-app-engine-django/source/checkout cheers Michael On Mar 15, 3:58 am, Coonay fla...@gmail.com wrote: where can i get r72? the latest is just

[google-appengine] Re: Twitter - rate limit exceeded

2009-03-16 Thread lock
Thanks Tim. Think I've managed to convince myself that I can work around the lack of inbuilt scheduled tasks. Who knows by the time I manage to pull together enough motivation google may have implemented it already. Worst case I may be able to use a work server to call an URL, although its not

[google-appengine] Re: Stored Data figure suddenly way higher than Data Viewer suggests

2009-03-16 Thread Michael O'Brien
Thanks Marzia, but I think something must have gone wrong with the stats that day. I didn't make any change but I'm now back down to 0.00 GB used (which sounds right for the tiny amount of test data I have). It's not causing me a problem right now, but I did notice something strange: my billing

[google-appengine] Re: A question for Jaiku's developers, if they're watching..

2009-03-16 Thread David Wilson
Thanks for that Dan. I just noticed that quite surprisingly, time.sleep() works. David. 2009/3/16 Dan Sanderson dansander...@google.com: The XMPP support mentioned on the roadmap does not include BOSH. -- Dan On Sun, Mar 15, 2009 at 6:14 PM, David Wilson d...@botanicus.net wrote:

[google-appengine] Exception...Memory Error

2009-03-16 Thread Nora
Hello, I have developed an applicaiton that reads some information from text files and stores them into dictionaries. During the loading of information into my dictionaries, I get an exception error for 'Memory Error'. I understand that this means over use of cpu time. I have no clues on how

[google-appengine] Re: A question for Jaiku's developers, if they're watching..

2009-03-16 Thread thuan
I just noticed that quite surprisingly, time.sleep() works. There is a 10 second execution limit for all requests. This includes requesting and submitting data to external services. Long polling would not be that easy to sustain. I'm still looking for a way to circumvent this limitation, if

[google-appengine] Re: A question for Jaiku's developers, if they're watching..

2009-03-16 Thread Andrew Badera
use a URL monitoring service to ping your URLs every n minutes ... On Mon, Mar 16, 2009 at 6:40 AM, thuan nunob...@gmail.com wrote: I just noticed that quite surprisingly, time.sleep() works. There is a 10 second execution limit for all requests. This includes requesting and submitting

[google-appengine] Re: Getting 500 error message

2009-03-16 Thread Greg
Yup, when I deactivate the login requirement the app magically re- appears. However, I need to protect the data so this isn't a viable option. On Mar 16, 7:00 pm, Greg greg.ig...@gmail.com wrote: Yes, my application uses authentication with a google appsdomain account. I think we have the same

[google-appengine] Re: using memcache for caching query results

2009-03-16 Thread jonathan
That is a really good idea. I guess it is able to be applied to other similar kinds of things too, where I am applying filters and paging on those results too. (though that would get a bit more tricky) thanks Jonathan On Mar 3, 11:51 pm, Andi Albrecht albrecht.a...@googlemail.com wrote:

[google-appengine] What applications to developed on appengine?

2009-03-16 Thread Ronn Ross
I'm part of a small start up and we create an application similar to 37 signals Basecamp. It is a basic CRM app, but we have a lot of users. They read and write a lot of data to the system per day. Would this be an ideal candidate for an app engine project? Thanks

[google-appengine] Re: Error sending email

2009-03-16 Thread Ronn Ross
Colin, Thanks for the heads up. I guess it's a good idea for Google not to allow app to send from made up addresses. Thanks On Sun, Mar 15, 2009 at 10:58 PM, Sargis Dallakyan food@gmail.comwrote: The sender must be the email address of a registered administrator for the application, or

[google-appengine] Re: using memcache for caching query results

2009-03-16 Thread Joe Bowman
Check out the cache utility in gaeutilities. http://gaeutilities.appspot.com/cache Looking at the demo, it appears I need to update that page. Anyhow, cache uses both the datastore and the memcache. When you write a cache entry, it writes to the datastore, then to memcache. When you attempt to

[google-appengine] Re: Can Appengine provide Browser information..?

2009-03-16 Thread Joe Bowman
import os os.environ['REMOTE_ADDR'] is the IP os.environ['HTTP_USER_AGENT'] is the user agent I'm sure there's more, those are the two I needed when I created the sessions utility. Note: I've found that they don't always populate, more than likely a per browser issue. I was confused to see

[google-appengine] Writing to the file system?

2009-03-16 Thread Ronn Ross
Can you write to the file system with app engine? My app requires people to upload text documents. Thanks --~--~-~--~~~---~--~~ 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] Re: Writing to the file system?

2009-03-16 Thread Sudhir
No, I don't believe you can... part of the security restrictions. Ronn Ross wrote: Can you write to the file system with app engine? My app requires people to upload text documents. Thanks --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] Re: What applications to developed on appengine?

2009-03-16 Thread Sudhir
Yeah, I would use GAE for a CRM app... the object model it has is especially helpful. You need to do a bit of work to get around the scalability issues, but other than that its a great option. The limits I'm talking about are the ones like the datastore returning only 1000 items... so you'll have

[google-appengine] Re: Writing to the file system?

2009-03-16 Thread Ronn Ross
Does anyone know a work around for this type of task? On Mon, Mar 16, 2009 at 9:10 AM, Sudhir sudhi...@gmail.com wrote: No, I don't believe you can... part of the security restrictions. Ronn Ross wrote: Can you write to the file system with app engine? My app requires people to upload

[google-appengine] Re: Writing to the file system?

2009-03-16 Thread Andrew Badera
I'm sure this has never come up before ... certainly not recently ... On Mon, Mar 16, 2009 at 9:08 AM, Ronn Ross ronn.r...@gmail.com wrote: Can you write to the file system with app engine? My app requires people to upload text documents. Thanks

[google-appengine] Re: Writing to the file system?

2009-03-16 Thread Sudhir
The simplest thing would be to store the files in the datastore. since they're text files, a text or blob property should do fine you can use the blob for things like word docs and non text / binary formats too. Sudhir blog.sudhirj.com On Mar 16, 6:15 pm, Ronn Ross ronn.r...@gmail.com

[google-appengine] Parallel urlfetch utility class / function.

2009-03-16 Thread David Wilson
I've created a Google Code project to contain some batch utilities I'm working on, based on async_apiproxy.py from pubsubhubbub[0]. The project currently contains just a modified async_apiproxy.py that doesn't require dummy google3 modules on the local machine, and a megafetch.py, for

[google-appengine] delete an entry in a stringlistproperty

2009-03-16 Thread sagey
Hello, i'd really appreciate some help. I have a model with 3 stringlistproperty properties. keylist urllist namelist keylist[0] relates to urllist[0] and namelist[0] i want to be able to search through the keylist property for a key, then delete each record in the 3 stringlistproperties that

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread peterk
Very neat.. Thank you. Just to clarify, can we use this for all API calls? Datastore too? I didn't look very closely at the async proxy in pubsubhubub.. Asynchronous calls available on all apis might give a lot to chew on.. :) It's been a while since I've worked with async function calls or

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread David Wilson
It's completely undocumented (at this stage, anyway), but definitely seems to work. A few notes I've come gathered: - CPU time quota appears to be calculated based on literal time, rather than e.g. the UNIX concept of time spent in running state. - I can fetch 100 URLs in 1.3 seconds from a

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread peterk
A couple of questions re. CPU usage.. CPU time quota appears to be calculated based on literal time Can you clarify what you mean here? I presume each async request eats into your CPU budget. But you say: since you can burn a whole lot more AppEngine CPU more cheaply using the async api Can

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread bFlood
oh my, this is working now?!? I just assumed it would only be available from the next build. great work david! I agree on waiting for the official release but its certainly something that we can test with right now in preparation for the new release. thanks for digging this out (and thanks to

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread David Wilson
I have no idea how definitive this is, but literally it means wall clock time seems to be how CPU cost is measured. I guess this makes sense for a few different reasons. I found some internal function google3.apphosting.runtime._apphosting_runtime___python__apiproxy.get_request_cpu_usage with

[google-appengine] Re: minimal http response headers

2009-03-16 Thread Jarek Zgoda
Nothing forces you to use WebApp framework with its request/response objects - WebOb is available already (afaik, in WebApp request is WebOb request, but response is not a subclass of WebOb response), Werkzeug works too. On 15 Mar, 06:32, zombie tom...@gmail.com wrote: Does anyone know what is

[google-appengine] new Open source proj -- for login, remember me, security, usability functionality -- adrian remembers

2009-03-16 Thread Adrian Scott . com
Get your app started very quickly with this free code... for membership capability http://www.adrianremembersme.com/ Version 0.1.1 currently offers basic login, remember me functionality ( + photo upload for profile ) Attempting to follow and encode best practices for cookies, security,

[google-appengine] Re: I got a problem with Appengine + Flex-HttpService

2009-03-16 Thread amc
I have the same problem with my flex application and IE6. I can't shed any insight at the moment - just wanted to let you know that I see the same problem too. For now I can get away with letting my soon to be users know not to use IE6. Anton On Mar 4, 12:58 pm, Scott Seely sc...@scottseely.com

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread Joe Bowman
Does the batch fetching working on live appengine applications, or only on the SDK? On Mar 16, 10:19 am, David Wilson d...@botanicus.net wrote: I have no idea how definitive this is, but literally it means wall clock time seems to be how CPU cost is measured. I guess this makes sense for a

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread David Wilson
Joe, I've only tested it in production. ;) The code should work serially on the SDK, but I haven't tried yet. David. 2009/3/16 Joe Bowman bowman.jos...@gmail.com: Does the batch fetching working on live appengine applications, or only on the SDK? On Mar 16, 10:19 am, David Wilson

[google-appengine] Re: delete an entry in a stringlistproperty

2009-03-16 Thread Tim Hoffman
Nah try: index = keylist.index(keyIWantToFind) keylist.pop(index) urlist.pop(index) nameslist.pop(index) except ValueError: pass or index = keylist.find( keyIWantToFind) if index -1: keylist.pop(index) urlist.pop(index) nameslist.pop(index) Remember a

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread Joe Bowman
Wow that's great. The SDK might be problematic for you, as it appears to be very single threaded, I know for a fact it can't reply to requests to itself. Out of curiosity, are you still using base urlfetch, or is it your own creation? While when Google releases their scheduled tasks

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread bFlood
@joe - fire/forget - you can just skip the fetcher.wait() call (which call AsyncAPIProxy.wait). I'm not sure of you would need a valid callback but even if you did it could be a simple stub that does nothing. @david - have you made this work with datastore calls yet? having some issues trying

[google-appengine] Image/font manipulation

2009-03-16 Thread cr33dog
Hi Group, Sorry if I missed this in the FAQ, but is there any way to load a font and output text as an image? I've been toying with an idea of making a GAE app to manipulate text using bezier curves (containers) - sort of like fontwork in a popular office suite (but better!). However, the

[google-appengine] Re: Problem for bulkloader.py using PolyModel

2009-03-16 Thread Saravana
Marzia, The problem is occurs when data for a class that is derived from a class that is derived from polymodel class. The problem is bulkloader looks for the class in _kind_map[1], but it is not available in _kind_map. See comment[2] in polymodel class, why subclasses are not added to

[google-appengine] remote_api documentation's example, batching on __key__ without ordering?

2009-03-16 Thread Simo Salminen
Hi. In http://code.google.com/appengine/articles/remote_api.html there is example: entities = MyModel.all().fetch(100) while entities: for entity in entities: # Do something with entity entities = MyModel.all().filter('__key__ ', entities[-1].key ()).fetch(100) How come there is no

[google-appengine] Re: Change Development Server logging level default to debug

2009-03-16 Thread Chris Mohler
On Fri, Mar 13, 2009 at 10:09 PM, Coonay fla...@gmail.com wrote: IN order to display debug level info ,have to supply debug option like following dev_appserver.py coonay --debug how can i Change Development Server logging level default to debug If dev_appserver.py is in your $PATH you can

[google-appengine] Paging article code sample has wrong order() call parameter?

2009-03-16 Thread Simo Salminen
Hi, In article http://code.google.com/appengine/articles/paging.html there is code sample for Paging without a property: def get(self): next = None bookmark = self.request.get(__key__) if bookmark: suggestions = Suggestion.all().order(__key__).filter('__key__ =',

[google-appengine] Re: App Engine is Blocked by Chinse gov

2009-03-16 Thread zhangrich...@gmail.com
I am in Ningbo. I found this problem yesterday afternoon also. I can not visit my web proxy http://proxy1china.appspot.com (74.125.19.141). I thought it is caused by GFW instead of Google Bug because I used other proxy tool and I can get my site. Then I add a subdomin

[google-appengine] Is Google App Engine support UDP communication? I know it is support tcp like http.

2009-03-16 Thread JasonJi
I want develop a small tools use UDP, But I don't know if Google App Engine support UDP communication? I know it is support tcp like http. Tks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] doc files suddenly missing from google apps domain

2009-03-16 Thread Legacy FamilyTree
Hi guys, This one is very serious for us at at our googleapps domain of kycevents.com Some time yesterday, March 13, 2009, our major group of users at our sailing club found that all of the doc files they were sharing suddenly disappeared off of their doc folder. The doc files that were not

[google-appengine] Re: Brazil and Hong Kong now supported for Billing

2009-03-16 Thread meaglith
When support China? On Thu, Mar 5, 2009 at 6:19 AM, Thyako thy...@gmail.com wrote: Great! However, Brazil still does not appear in the Google Checkout own signup page. That is, only activating billing on GAE you can see Brazil before accepting the Checkout terms. If you go to

[google-appengine] How to initialize db.TimeProperty and db.GeoPtProperty from POST params?

2009-03-16 Thread hardwarrior
Hi! I want db.TimeProperty and db.GeoPtProperty to be initialized from request params. I know how to do it for blob (db.Blob), text and postAddress. But have no idea how to make the same db.TimeProperty and db.GeoPtProperty. Please advise. --~--~-~--~~~---~--~~

[google-appengine] The no-brainer integration with Google Checkout is missing.

2009-03-16 Thread RunningCloud
Hmmm. -- Cannot use the notification API because no support for HTTPS on custom domains -- Cannot use the polling API because no scheduled tasks can run If there is some way to Google Checkout now with GAE, I would think this would be the #1 cookbook or sample application. Or simply built

[google-appengine] Re: Datastore usage goes up over time?

2009-03-16 Thread Stephen
On Mar 13, 9:39 pm, C. Scott Ananian canan...@gmail.com wrote: I imported about 3 million very simple records into appengine, using the bulk_uploader tool.  The raw size of the input CSV was 85M.  After upload, google showed my datastore quota usage as being about 0.16G -- a factor of 2

[google-appengine] Accessing the datastore

2009-03-16 Thread pokiman
Hello All, Is there a way to access the google datastore via an external python program? What I want to basically do is run a computationally intensive process on my home machine and update the google datastore periodically, preferably automatically. Thanks in advance.

[google-appengine] Re: Writing to the file system?

2009-03-16 Thread M. Page-Lieberman
No. It's prohibited to write to the file system. On Mar 16, 2009, at 9:10, Andrew Badera and...@badera.us wrote: I'm sure this has never come up before ... certainly not recently ... On Mon, Mar 16, 2009 at 9:08 AM, Ronn Ross ronn.r...@gmail.com wrote: Can you write to the file system

[google-appengine] Countries banned from using GAE applications?

2009-03-16 Thread will
Are certain countries banned from using applications running on GAE? One of our users said they got the following message when they tried to access our app: ForbiddenYour client does not have permission to get URL / from this server. (Client IP address: 88.86.31.163) You are accessing this page

[google-appengine] Re: delete an entry in a stringlistproperty

2009-03-16 Thread M. Page-Lieberman
Sage. Python makes your life a lot easier. On Mar 16, 2009, at 11:18, Tim Hoffman zutes...@gmail.com wrote: Nah try: index = keylist.index(keyIWantToFind) keylist.pop(index) urlist.pop(index) nameslist.pop(index) except ValueError: pass or index = keylist.find(

[google-appengine] Chartle.net - application based on Google App Engine

2009-03-16 Thread Dieter Krachtus
I created a webapp to create charts, plots and maps using the Google Chart API and the Google Visualization API. The webapp is hosted using Google Appengine. I would like to get your feedback. http://www.chartle.net Cheers, Dieter --~--~-~--~~~---~--~~ You

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread David Wilson
I forgot to mention, AppEngine does not close the request until all asynchronous requests have ended. This means it's not truly fire and forget. Regardless of whether you're waiting for a response or not, if a request is in progress, the HTTP response body is not returned to the client. I

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread Joe Bowman
I imagine keeping the request open until everything is done isn't going to go away any time soon, it's how http responses work and the scheduled tasks on the roadmap would be better suited to providing better support for that. I also agree on the batch put and get functionality for the most part

[google-appengine] Re: doc files suddenly missing from google apps domain

2009-03-16 Thread Dan Sanderson
Hi James - Please contact Google Apps support for this issue: http://www.google.com/support/a/?hl=en The google-appengine group is for App Engine issues and discussions. Thanks! -- Dan On Sat, Mar 14, 2009 at 4:51 AM, Legacy FamilyTree legacyfamilyt...@shaw.ca wrote: Hi guys, This one

[google-appengine] Re: remote_api documentation's example, batching on __key__ without ordering?

2009-03-16 Thread Dan Sanderson
__key__ is the default ordering when no other filters or sort orders are requested. (In general, __key__ is the last ordering applied after all other orders.) -- Dan On Fri, Mar 13, 2009 at 8:37 PM, Simo Salminen ssalm...@gmail.com wrote: Hi. In

[google-appengine] Re: Accessing the datastore

2009-03-16 Thread Joe Bowman
I think you're looking for this: http://code.google.com/appengine/articles/remote_api.html On Mar 16, 1:01 am, pokiman adna...@gmail.com wrote: Hello All, Is there a way to access the google datastore via an external python program? What I want to basically do is run a computationally

[google-appengine] Re: Parallel urlfetch utility class / function.

2009-03-16 Thread bFlood
thanks david. agreed on datastore except that unlike the current batch calls, you might be able to execute code concurrently on each response and then wait for all the worker's results. to me, and I could be wrong, even a no-op datastore request could serve as a poor man's worker thread. I'll

[google-appengine] exporting table to xml

2009-03-16 Thread Steph Thirion
Hi all, for a week I have been gathering statistics from my iphone game, and now I'd like to grab it and draw some visualizations. What I thought I'd do is somehow exporting the stats table into an xml, and then play around with that xml locally. I know the appengine folks are still working on

[google-appengine] Re: Clearing an entire table

2009-03-16 Thread Wooble
Kludgy solution: add a week property to your objects, and use an equality filter on it. On Mar 16, 6:26 am, sucram.mar...@gmail.com sucram.mar...@gmail.com wrote: Hello everyone! I am looking at designing a feature where I would have a weekly window of database entries. This means that I

[google-appengine] Re: Release Status of Google App Engine

2009-03-16 Thread Marzia Niccolai
Hi, For the record, App Engine is still in preview release. -Marzia On Sun, Mar 15, 2009 at 10:12 AM, Ryan Lamansky spam...@kardax.com wrote: Gmail is still in beta... so I figure the App Engine has 10-20 years before it's released :) peterk is right; consider it done when it satisfies

[google-appengine] Re: Reading from a static text file

2009-03-16 Thread Nash-t
if all you really have to do is read the file you could just put it in a .py file and import it. Store it as a dictionary or an array or an object. Whatever works. On Mar 16, 12:31 am, djidjadji djidja...@gmail.com wrote: Why don't you put the file in the datastore. You can put it on a word

[google-appengine] Re: Reading from a static text file

2009-03-16 Thread Matthew Page-Lieberman
Also, Prasy, try running this spell check application on your outgoing emails... On Mon, Mar 16, 2009 at 2:14 PM, Nash-t timna...@gmail.com wrote: if all you really have to do is read the file you could just put it in a .py file and import it. Store it as a dictionary or an array or an

[google-appengine] Re: Chartle.net - application based on Google App Engine

2009-03-16 Thread Amr Ellafi
Congrats I liked it very much. user-friendly as well. if this is a one man show, then you are talented ! On Mon, Mar 16, 2009 at 12:57 PM, Dieter Krachtus dieter.krach...@googlemail.com wrote: I created a webapp to create charts, plots and maps using the Google Chart API and the Google

[google-appengine] Re: Chartle.net - application based on Google App Engine

2009-03-16 Thread Matthew Page-Lieberman
I liked it a lot too. On Mon, Mar 16, 2009 at 2:39 PM, Amr Ellafi amrl...@gmail.com wrote: Congrats I liked it very much. user-friendly as well. if this is a one man show, then you are talented ! On Mon, Mar 16, 2009 at 12:57 PM, Dieter Krachtus dieter.krach...@googlemail.com wrote: I

[google-appengine] Re: Chartle.net - application based on Google App Engine

2009-03-16 Thread Andrew Badera
Agreed. Looks good, appears to operate smoothly. Nice app! On Mon, Mar 16, 2009 at 2:00 PM, Matthew Page-Lieberman mateus.just...@gmail.com wrote: I liked it a lot too. On Mon, Mar 16, 2009 at 2:39 PM, Amr Ellafi amrl...@gmail.com wrote: Congrats I liked it very much. user-friendly as

[google-appengine] Can I query to find out the children entities of a Parent entity?

2009-03-16 Thread iceanfire
Hi, I'm having a bit of trouble understanding how to use parents/children properties within transactions. I have divided up my Thumbnails and the actual Large Image into two separate models to save processing power, but when I upload, I want to make sure that both entities are

[google-appengine] Re: exporting table to xml

2009-03-16 Thread Wooble
On Mar 16, 1:15 pm, Steph Thirion ste...@gmail.com wrote: (By the way, how do I check how many entries I have in a table? From the data viewer I see it only shows a max of 1000) You put in a (possibly sharded) counter from the start. --~--~-~--~~~---~--~~ You

[google-appengine] Re: Can I query to find out the children entities of a Parent entity?

2009-03-16 Thread iceanfire
Also, now when I ran the following code in the console: from google.appengine.ext import db key_of_specific_Thumb_entity = agdhcHRydXNochALEgpJbWFnZVRodW1iGEUM ==key grabbed from datastore for thumbnail (which is a parent of the Bin/Large Image)

[google-appengine] Re: GWEI (Google Will Eat Itself) on GAE ???

2009-03-16 Thread xml2jsonp
Does Google not like the art of hacktivism? On Mar 15, 8:23 pm, xml2jsonp davide.rogn...@gmail.com wrote: Ok, then Why this response: ok, we understand it's art, but you have to stop it now.http://www.we-make-money-not-art.com/archives/2008/01/how-did-neural.php . . . . . . On Mar

[google-appengine] Re: sending mail with nicely formatted sender

2009-03-16 Thread xml2jsonp
Only 47 stars :-( More stars (please) the Universe is full :-) On Mar 15, 8:55 pm, manuelaraoz manuelar...@gmail.com wrote: please everyone star this issue, it must have a very simple fix and it's very necessary thanks Manuel --~--~-~--~~~---~--~~ You

[google-appengine] Re: Forward request or webapp.RequestHandler chaining (like Actions framework in java)

2009-03-16 Thread xml2jsonp
Yes, ok. You could open a New Issue... On Mar 15, 10:44 pm, Jarek Zgoda jarek.zg...@gmail.com wrote: It would be easier if you do not use WebApp but follow Django way of request handling (easy to achieve even without Django, ie. using Werkzeug to lay out application in model-view-template

[google-appengine] Re: Is the billing the future? Porting my mind from GAE to PHP to JavaScript (from server-side to client-side)

2009-03-16 Thread Barry Hunter
Precisely, my question! On 16/03/2009, xml2jsonp davide.rogn...@gmail.com wrote: What sense? On Mar 16, 1:17 am, Barry Hunter barrybhun...@googlemail.com wrote: Is this thread actually meant to make sense? On 15/03/2009, xml2jsonp davide.rogn...@gmail.com wrote:

[google-appengine] Re: Release Status of Google App Engine

2009-03-16 Thread WallyDD
I know we can read the fine print and see that we probably have 90 days if Google decides to pull the plug. Where is Google headed with App Engine? Is this product still going to be here five years from now? six months from now? The beta tag is something of a joke with gmail, they are already

[google-appengine] Re: delete an entry in a stringlistproperty

2009-03-16 Thread sagey
Thanks for the help. If as you suggest i pop the element i want to delete, do i then need to: person.put() In order to write the changes back to the datastore? Sorry if this question is really obvious, but i'm not finding the gae documentation the most useful. On Mar 16, 4:40 pm, M.

[google-appengine] Re: Release Status of Google App Engine

2009-03-16 Thread xml2jsonp
Is Google's perpetual beta a winning strategy? http://209.85.129.132/search?q=cache:ApYmZkCJSmkJ:news.cnet.com/8301-13505_3-10054293-16.html+Google+beta+strategycd=1hl=enct=clnk [...] We have very high internal metrics our consumer products have to meet before coming out of beta. Our teams

[google-appengine] Re: The no-brainer integration with Google Checkout is missing.

2009-03-16 Thread Amr Ellafi
HTTPS already exists but with your appspot domain, scheduled task is planned but not yet released ! On Sun, Mar 15, 2009 at 7:55 PM, RunningCloud lou.houlema...@gmail.com wrote: Hmmm. -- Cannot use the notification API because no support for HTTPS on custom domains -- Cannot use the

[google-appengine] Let Delete My Apps (3 apps)

2009-03-16 Thread xml2jsonp
Thanks to: - ikoo-dirtylife - gythialy-app - pyoohtml http://pyoohtml.appspot.com/let-delete-my-apps/home --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email

[google-appengine] Re: GAE and Google Apps Domain

2009-03-16 Thread Marzia Niccolai
Hi, Yes, this is possible. Two things to be aware of: 1) The Google Apps administer has to add the id through the Google Apps cPanel 2) If you restrict authentication to a Google Apps account, you must either serve it off of _that_ Apps domain, or you off of appspot if you add the app id to

[google-appengine] Re: Deployments Quota and Billing Settings

2009-03-16 Thread Marzia Niccolai
Hi Mike, There are no plans to increase this limit with billing, and at this time we are not able to grant increases for this quota. -Marzia On Sat, Mar 14, 2009 at 6:27 AM, mchir...@gmail.com mchir...@gmail.comwrote: I have a need to go over the 250 Deployments per day. Are there any

[google-appengine] Realease versions

2009-03-16 Thread Ronn Ross
Can you on use integers for version numbers? For example 1,2, and 3, or can you uses floats e.g. 1.1,1.2,1.3?thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] Genshi on GAE

2009-03-16 Thread Ronn Ross
Has anyone use Genshi on GAE? --~--~-~--~~~---~--~~ 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 To unsubscribe from this group, send email

[google-appengine] Re: exporting table to xml

2009-03-16 Thread Marzia Niccolai
Hi, There is no built-in way to bulk-download your data, you will need to write a custom utility. You can only fetch at most 1000 entities at a time, but depending on the size and shape of your data, it's possible that in 1 request it will be less than that. If you haven't built in a reliable

[google-appengine] Re: Redirect loop when accessing my site

2009-03-16 Thread Marzia Niccolai
Hi, Could you post any code that might help diagnose the error, as well as the URL where it is occurring? -Marzia On Sun, Mar 15, 2009 at 10:57 PM, Min Li lim...@gmail.com wrote: Hi, My web site experience the 'redirect loop ' error. It worked well before. Any idea? Thanks,

[google-appengine] Re: Stored Data figure suddenly way higher than Data Viewer suggests

2009-03-16 Thread Marzia Niccolai
Hi, It takes some time for the accounting to take affect for the datastore, so what you probably saw was the offline adjustment of storage. If you are experiencing problems with billing enabled on your account, I would suggest contact billing support directly:

[google-appengine] Re: Genshi on GAE

2009-03-16 Thread xml2jsonp
See here: http://groups.google.com/group/genshi/browse_thread/thread/c7b6f38845d27151 On Mar 16, 9:42 pm, Ronn Ross ronn.r...@gmail.com wrote: Has anyone use Genshi on GAE? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] Re: Getting 500 error message

2009-03-16 Thread Marzia Niccolai
Hi, You are now able to serve Google Apps login pages off an appspot domain if you add the app id through your cPanel. However, this change happened this past week, if you added the app to your domain prior to that time, it will need to be re-added. -Marzia On Mon, Mar 16, 2009 at 4:12 AM,

[google-appengine] GAE will not let me validate my mobile number

2009-03-16 Thread nate12o6
I am trying to validate my google apps engine account with my cell phone but it is telling me it was used already. That is simply not the case. Can someone help me out with this? I have a google apps account. email is nat...@greneaux.com --~--~-~--~~~---~--~~

[google-appengine] dev_appserver.py, line 55, in module

2009-03-16 Thread goosfancito
hello, OS: windows xp Sp2 version python: 2.4.5 i´m new user googe app engine. when i do dev_appserver.py holamundo appeserver reports - 8 - File C:\Google\google_appengine\dev_appserver.py, line 55, in module execfile(script_path, globals()) File

[google-appengine] Re: Realease versions

2009-03-16 Thread Dan Sanderson
You can actually use any string for the version identifier. So yes, you can use floats. -- Dan On Mon, Mar 16, 2009 at 1:36 PM, Ronn Ross ronn.r...@gmail.com wrote: Can you on use integers for version numbers? For example 1,2, and 3, or can you uses floats e.g. 1.1,1.2,1.3?thanks

[google-appengine] Re: Redirect loop when accessing my site

2009-03-16 Thread Min Li
It seems not related to codes. Please have a visit to the website: http://www.childcenter.ca. Sometimes it works, sometimes the error happens. I checked this morning, it worked. But it's not working now. It sounds like the very unstable domain name service. Thanks for your time. Min On Mar 16,

[google-appengine] Re: dev_appserver.py, line 55, in module

2009-03-16 Thread Matthew Page-Lieberman
I know that one of the requirements to run GAE is to have at least Python 2.5. Don't go running to Python 3.0 though just quite yet for GAE. It's not supported AFAIK. On Mon, Mar 16, 2009 at 3:54 PM, goosfancito goosfanc...@gmail.com wrote: hello, OS: windows xp Sp2 version python: 2.4.5

[google-appengine] Re: Let Delete My Apps (3 apps)

2009-03-16 Thread Matthew Page-Lieberman
NICE On Mon, Mar 16, 2009 at 4:31 PM, xml2jsonp davide.rogn...@gmail.com wrote: Thanks to: - ikoo-dirtylife - gythialy-app - pyoohtml http://pyoohtml.appspot.com/let-delete-my-apps/home -- M. Page-Lieberman mateus.just...@gmail.com

[google-appengine] u32 too big ProtocolBufferError for memcache time over maximum on production, but works locally

2009-03-16 Thread James
When setting the time for a memcache.set(), the time specified can't be longer than one month. When the time is longer, it works fine on the local SDK, but fails with a u32 too big ProtocolBufferError on production. Either the local SDK behavior should match production, or else the memcache

[google-appengine] Re: dev_appserver.py, line 55, in module

2009-03-16 Thread Lord Gustavo Miguel Angel
thank´s But i have python 2.4.5 not 3.0 - Original Message - From: Matthew Page-Lieberman To: google-appengine@googlegroups.com Sent: Monday, March 16, 2009 6:09 PM Subject: [google-appengine] Re: dev_appserver.py, line 55, in module I know that one of the requirements to

  1   2   >