[google-appengine] Re: Empty variable tag error

2009-03-09 Thread djidjadji
It is a small bug in the Django template renderer to not show the token that causes the error in the exception message, the token variable is passes to the Parser.error() method. In your case the token.contents is None or False so no extra info if printed. The only solution you have is to strip

[google-appengine] Re: jQuery while doing Ajax call

2009-03-09 Thread Michael O'Brien
Hi Ritesh, the problem is that specifying dataType: xml doesn't tell jQuery it should send the data in XML, just that it should expect XML to be returned from the url. You need to construct the XML yourself and set the contentType option to text/xml to actually send your data as XML.

[google-appengine] Re: email change propagation

2009-03-09 Thread ksjun
http://code.google.com/p/googleappengine/issues/detail?id=1019 On 3월9일, 오후1시55분, yucc yucc2...@gmail.com wrote: As mentioned athttp://code.google.com/appengine/docs/python/users/userobjects.html, I just can't figure out what's the exactly situation for While an email address is unique to an

[google-appengine] Re: Empty variable tag error

2009-03-09 Thread lancemiller777
The only solution you have is to strip splashpage.txt to the bare minimum and add stuff bit by bit to find the line that causes the error. I think you have made a typo and that is not caught by the parser. Correct, it was a typo in splashpage.txt Specifically, the missing user django

[google-appengine] Re: key_name and Model API V2

2009-03-09 Thread Waldemar Kornewald
Hi Ryan, On Mar 9, 1:23 am, ryan ryanb+appeng...@google.com wrote: Couldn't you allow for overriding ids while at the same time assigning free ones automatically? definitely! we've considered this internally for a while. we'd love to provide operations for advanced users to manage the id

[google-appengine] Why this is happening?

2009-03-09 Thread arnie
Using django templates I have written a very simple method in views.py as below def signin(request): return return_to_response('overview.html') Though I am successfully getting the overview.html page but what is problematic here is that the browser address bar now becomes something like

[google-appengine] Re: File Size and Total Files on Disk Limits?

2009-03-09 Thread Michael O'Brien
Hi Lee, according to the roadmap, support for large files (and, I'd guess, as many files as you want to pay for) is coming between now and June: http://code.google.com/appengine/docs/roadmap.html Until then, your best bet is probably Amazon S3. cheers Michael On Mar 9, 12:11 am, Lee Olayvar

[google-appengine] Re: Why this is happening?

2009-03-09 Thread Michael O'Brien
Your signin view should probably redirect to the overview rather than just writing the template. So you could use something like: def overview(request): return return_to_response('overview.html') def signin(request): return HttpResponseRedirect(reverse(overview)) cheers Michael On Mar

[google-appengine] This application ID or version is already in use. Why?

2009-03-09 Thread K_Reverter
When I create create an application as dituren.appspot.com I got a 400 error This application ID or version is already in use. But when I click the Check availability , I got a message Yes, dituren is available! Why? Please help me! --~--~-~--~~~---~--~~ You

[google-appengine] Re: iterate thru 2 stringlistproperties in template

2009-03-09 Thread Andi Albrecht
I would zip() both lists on the Python side and iterate over that zipped lists in the template, e.g. # Python side newval = zip(stringlist1, stringlist2) # Template {%for item in newval%} {{item.0}} and {{item.1}} {%endfor%} Regards, Andi On Mon, Mar 9, 2009 at 2:19 PM, sagey

[google-appengine] Re: Somewhat Disappointed.

2009-03-09 Thread Joe Bowman
Server side javascript would be awesome, I have to admit. The challenges you are running into with having to use python and javascript is just the nature of the game right now in most shops. Don't forget CSS, and making sure both your CSS and javascript work across all browsers. ugh On Mar 9,

[google-appengine] Re: app-engine-patch migration problem

2009-03-09 Thread wonglik
Thx that was it :) regards Mateusz On Mar 8, 11:07 pm, Waldemar Kornewald wkornew...@gmail.com wrote: Hi, On 8 Mrz., 19:39,wonglikwag...@gmail.com wrote: I am trying to migrate appengine-django project to use app-engine- path. Among other problems I get something really strange (for

[google-appengine] Django Block feature and Google App Engine

2009-03-09 Thread Morten Bruhn
Hi Guys, First of all I am a newbie, but I still hope you can help me... I have created an app with a template - this works! :-) class MainHandler(webapp.RequestHandler): def get(self):

[google-appengine] can't receive Verify my Account by SMS

2009-03-09 Thread yaoyus...@gmail.com
I'm at china,simple chinese. I can't receive Verify code by SMS, 138 mobile. any help is please,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] I have an app I'd like to build - the question is GAE the right platform?

2009-03-09 Thread pierrette.mon...@googlemail.com
Hi, So basically my background is java and scripting languages web application development, RDMS, that sort of thing.I have a project I'd like to build with GAE because it is expected to be very popular and needs to scale. I'm used to scalability issues because I build serveral large sites

[google-appengine] Re: key_name and Model API V2

2009-03-09 Thread ryan
On Mar 8, 6:28 pm, Andy Freeman ana...@earthlink.net wrote: I assume that one of those operations allows programmers to assign the id to a db.Model instance for a new entity. On Mar 9, 4:29 am, Waldemar Kornewald wkornew...@gmail.com wrote: ID management is by far not as important as being

[google-appengine] Re: Google AdSense on App Engine

2009-03-09 Thread Ryan Lamansky
Yes. If you direct both AdSesnse and App Engine to the same bank account, it will pay for itself if your advertising income covers your resource usage fees. -Ryan On Mar 8, 12:11 pm, Let Delete My Apps davide.rogn...@gmail.com wrote: Idea: Can I put AdSense on my app to receive additional

[google-appengine] Google App Engine as a Google Summer of Code mentor organization?

2009-03-09 Thread Haoyu Bai
Hi, Google Summer of Code 2009 is started. (http://socghop.appspot.com/) I'm wondering if App Engine will participated as a mentor organization for GAE related open source projects? Thanks! -- Haoyu Bai --~--~-~--~~~---~--~~ You received this message because

[google-appengine] Re: I have an app I'd like to build - the question is GAE the right platform?

2009-03-09 Thread Ryan Lamansky
The biggest challenge to using the app engine is adjusting to the fact that the datastore, despite it's SQL-like outward appearance, is basically just an object store. Accessing or updating an individual record has equivalent performance to updating a file on disk. Addressing your specific

[google-appengine] Re: email change propagation

2009-03-09 Thread Ryan Lamansky
If 5 more people star the issue that kjsun linked to ( http://code.google.com/p/googleappengine/issues/detail?id=1019 ), it'll be on the font page of the issues list and it'll be the first bug on that page with an ID over 1000 :) -Ryan On Mar 9, 4:53 am, ksjun happy...@gmail.com wrote:

[google-appengine] Re: Open Sourcing some Google App Engine Apps

2009-03-09 Thread Paul Kinlan
Hi Again Everyone, Just to let you know I have opened the source code for www.atopical.com at https://github.com/PaulKinlan/a-topical/tree . I call the search engine a dynamic vertical search engine, because it searches vertically dynamically ;) It uses Yahoo Boss and searches Yahoo for the

[google-appengine] Re: Open Sourcing some Google App Engine Apps

2009-03-09 Thread Amr Ellafi
Hey Paul, Many thanks for those posting. I find them very inspiring to the open-source community. Keep the good work coming ! Amr On Mon, Mar 9, 2009 at 7:17 PM, Paul Kinlan paul.kin...@gmail.com wrote: Hi Again Everyone, Just to let you know I have opened the source code for

[google-appengine] Re: Cannot Properly Catch DeadlineExceededError

2009-03-09 Thread GAEfan
Any news on this? These timeouts are killing me. Thanks, Ken --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Problem with bulkloader.py and Google Apps account.

2009-03-09 Thread Marzia Niccolai
Hi, The authentication should work with either a Google Apps or Google Accounts login. Looking over the bulkload module, two thoughts come to my mind: 1) The docstring indicates that the username and password are cached, so if you enter it incorrectly, that may be cached 2) If your account is

[google-appengine] Re: Open Sourcing some Google App Engine Apps

2009-03-09 Thread Marzia Niccolai
Hi Paul, Would you like me to put these projects on our Open Source page? http://groups.google.com/group/google-appengine/web/google-app-engine-open-source-projects -Marzia On Mon, Mar 9, 2009 at 10:17 AM, Paul Kinlan paul.kin...@gmail.com wrote: Hi Again Everyone, Just to let you know I

[google-appengine] Re: Datastore errors, timeouts, general difficulties

2009-03-09 Thread Marzia Niccolai
Hi, My apologies for not closing 452. With the launch of billing, this issue was fixed, we now run a process that correctly accounts for the amount of datastore usage. Deletes may not immediately be reflected, but they will be eventually. So if you did delete all of your data this should be

[google-appengine] Re: appcfg.py update error after upgrading to 1.1.9 and google-appengine-patch 1.0

2009-03-09 Thread Marzia Niccolai
Hi, Does this happen after you run the appcfg.py rollback command? -Marzia On Sun, Mar 8, 2009 at 9:57 PM, Will vocalster@gmail.com wrote: Hi there, I recently upgraded to GAE 1.1.9, and google-appengine-patch 1.0. The local test run is fine, but when I tried to upload to server using

[google-appengine] Re: This application ID or version is already in use. Why?

2009-03-09 Thread Marzia Niccolai
Hi, This is a known issue with the 'Check availability' functionality. Gmail and App Engine share the same namespace, but in Gmail when you reserve eg d1turen, dituren is also reserved. The Check availability function does not correctly check for this case. So if you get the message 'This

[google-appengine] transition from appspot to own domain

2009-03-09 Thread Andy Freeman
If I start my GAE application on an appspot domain, say andyspotofgold.appspot.com and then later decide that I'd like to have it (also be) accessible via www.andyspotofgold.com, what do I have to do? (Assume that I can somehow get the rights to andyspotofgold.com.) I'd guess that there are two

[google-appengine] Re: transition from appspot to own domain

2009-03-09 Thread Wooble
The instructions are at http://code.google.com/appengine/articles/domains.html As long as you don't want to use the Google Apps domain to authenticate users, it really doesn't matter if you use Google Apps from the beginning or add the domain later. You basically just need to register the

[google-appengine] Re: This application ID or version is already in use. Why?

2009-03-09 Thread Andy Freeman
Does gmail reserve names corresponding to .com domains? On Mar 9, 11:43 am, Marzia Niccolai ma...@google.com wrote: Hi, This is a known issue with the 'Check availability' functionality.  Gmail and App Engine share the same namespace, but in Gmail when you reserve eg d1turen, dituren is

[google-appengine] Re: Google AdSense on App Engine

2009-03-09 Thread Let Delete My Apps
:-) I thinking without a bank insecure account... . . . On Mar 9, 5:40 pm, Ryan Lamansky spam...@kardax.com wrote: Yes. If you direct both AdSesnse and App Engine to the same bank account, it will pay for itself if your advertising income covers your resource usage fees. -Ryan On Mar 8,

[google-appengine] Re: Converting model objects to JSON

2009-03-09 Thread Let Delete My Apps
Wonderful :-) On Mar 8, 11:02 pm, Bastian Hoyer daf...@gmail.com wrote: On 7 Mrz., 23:23, Let Delete My Apps davide.rogn...@gmail.com wrote: results = [] for app in apps:     results.append({appname : app.appname}) just a small tip.. you can write this as results = [ {appname:

[google-appengine] Re: This application ID or version is already in use. Why?

2009-03-09 Thread Marzia Niccolai
Hi, No, Gmail names do have any correspondence to website addresses. -Marzia On Mon, Mar 9, 2009 at 1:11 PM, Andy Freeman ana...@earthlink.net wrote: Does gmail reserve names corresponding to .com domains? On Mar 9, 11:43 am, Marzia Niccolai ma...@google.com wrote: Hi, This is a

[google-appengine] *** BigTable vs SQLite vs MySQL ***

2009-03-09 Thread Let Delete My Apps
Back to the past: I planned to migrate a python app ... but my tests on google engine was really bad, compare to sqlite or mysql. http://groups.google.com/group/google-appengine/browse_thread/thread/b5696cc608bf76f9/afec4fdd936fa3ee?tvc=2q=slow+database#afec4fdd936fa3ee Now? Does the

[google-appengine] Getting __title__ is not defined error

2009-03-09 Thread Marcelo Sena
Hi, I'm getting the following error message when trying to run my application: 1 if __title__ == __main__: 2 main() __title__ undefined type 'exceptions.NameError': name '__title__' is not defined args = (name '__title__' is not defined,) message = name '__title__' is not

[google-appengine] Re: Somewhat Disappointed.

2009-03-09 Thread peterh
http://code.google.com/p/pyjamas/ Pyjamas is a cross-browser Web App development API that allows you to write your client side functionality in Python. While it looks like a desktop API, Pyjamas is a stand alone Python to JavaScript compiler, an AJAX framework / library and a comprehensive widget

[google-appengine] Re: a fundamental increase in App Engine transparency and locality is needed

2009-03-09 Thread Myroslav Opyr
Hi, Thank you for stepping in. What I've found myself wasting a lot of time with is quite inefficient navigation in GAE Status panel. Investigating current performance graphs I find myself repeatedly visiting 27th of Feb graphs and actual graphs and comparing scales. Can you invest a bit more

[google-appengine] query.count(1000) equal to exception Timeout()

2009-03-09 Thread magocrab
Whenever the query returns a large number of results and using the count() function to count the value of returned results, generates the exception Timeout() (Raised when the datastore operation exceeds the maximum amount of time allowed for datastore operations). Is there any solution to this

[google-appengine] geopy (Django module) supported on app engine?

2009-03-09 Thread arbi
Hi, I would like to know whether geopy's Django module (to geocode addresses) is supported on app engine. Does anyone know? How to know? If not supported, is there any solution to bring geopy to the server? Thx a lot Arbi --~--~-~--~~~---~--~~ You received

[google-appengine] Re: Somewhat Disappointed.

2009-03-09 Thread nima dilmaghani
If you wait until the Google IO conference, there just may be an announcement there that satisfies you. Cheers, Nima On Mon, Mar 9, 2009 at 1:52 PM, peterh peter.hau...@gmail.com wrote: http://code.google.com/p/pyjamas/ Pyjamas is a cross-browser Web App development API that allows you to

[google-appengine] How big memcache can grow

2009-03-09 Thread Rhyo
friends, new to app engine please let me know what is the maximum keys that can be added to memcache. Please let me how correct is it to add temporary information of a million users to memcache with a separate key of few bytes to each user and key expire time of 5 minutes.assuming that million

[google-appengine] DownloadError: ApplicationError: 5 Using GData Provisioning API

2009-03-09 Thread David Cifuentes
Hello, I'm getting this error when I'm using the GData Provisioning API to create user accounts from GAE. The weird thing is that it works well on the development environment and even in the production server the accounts are actually being created in Apps. I've read about this error in other

[google-appengine] Algorithm advice: Help design a twist on the digg scoring model

2009-03-09 Thread esilver
Hi folks, I have an algorithm question for the group that I've been toying with for awhile and really want to get some fresh thoughts on. It's kind of a twist on the digg scoring model, so I thought it might be interesting for a lot of people on this list. My site is http://www.wordds.com. It's

[google-appengine] Re: Getting __title__ is not defined error

2009-03-09 Thread Paul Roy
have you tried __name__ instead of __title__ ..? Sent from my iPhone On 09-03-09, at 15:28, Marcelo Sena marceloslace...@gmail.com wrote: Hi, I'm getting the following error message when trying to run my application: 1 if __title__ == __main__: 2 main() __title__ undefined type

[google-appengine] brick vs appengine

2009-03-09 Thread appengine lubber
http://imgur.com/IFGN.png --~--~-~--~~~---~--~~ 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 to

[google-appengine] urlfetch json UnicodeDecodeError

2009-03-09 Thread Bemmu
I have a MySpace REST url, for which I am getting the contents. I think that content is UTF-8 encoded, although I'm not totally sure. response = urlfetch.fetch(url) If I then do json.read(response), I get the following: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 0:

[google-appengine] Re: Getting __title__ is not defined error

2009-03-09 Thread Marcelo de Sena Lacerda
Yeah I tried to stop this message after I sent it, well I'll try to be more careful when renaming fields, thanks anyway! On Mon, Mar 9, 2009 at 9:32 PM, Paul Roy paul.ro...@gmail.com wrote: have you tried __name__ instead of __title__ ..? Sent from my iPhone On 09-03-09, at 15:28, Marcelo

[google-appengine] Expected Database Performance with Millions of Rows?

2009-03-09 Thread lenza
App Engine. Here is the situation: I have a database with about about 50k rows of type A, and maybe 500k rows of type B. Type A contains: - ReferenceProperty (to type B) - DateTimeProperty - IntegerPropery - 3 x StringProperty (at most 5 bytes each) I am performing the following

[google-appengine] Getting 500's when trying to accept new TOS?

2009-03-09 Thread Othman
Am using app engine to run Reitveld. Been running great so far, but started getting some capability errors today. When I tried logging into the management console, I am presented with new Terms of Service. However, when I try accepting these, I get a 500. Have other people been experiencing

[google-appengine] Re: Getting 500's when trying to accept new TOS?

2009-03-09 Thread Marce
Hi, Please try this again. I have a feeling it may have been related to the scheduled downtime: http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/16d46fbc268d1ad1 -Marzia On Mar 9, 6:36 pm, Othman oth...@gmail.com wrote: Am using app engine to run Reitveld.

[google-appengine] Re: App did not scale as expected?

2009-03-09 Thread GregF
Just checking that the problems didn't start exactly a week ago - appengine has been struggling between the scheduled maintenance last Monday till this Monday. Test again now, and see if it is working better - my app is flying now. Also check you can't use memcache to good effect, and get() and

[google-appengine] Re: jQuery while doing Ajax call

2009-03-09 Thread Ritesh Nadhani
Aaah, after working over the weekend finally figured it out. Its because jScript does not serialize/desrialize XML objects. So i had to use one of the plugins out there to do the same. Now I can do the XMLRPC calls and it works. On Mon, Mar 9, 2009 at 1:32 AM, Michael O'Brien

[google-appengine] Re: Query latency is not resolved

2009-03-09 Thread Myroslav Opyr
Hi, thanks to the maintenance that finished an hour ago we see big improvement. CPU is still twice slow but we seem to be able to finish our processes (quite CPU intensive BTW) before deadline. I'll report more tomorrow. Regards, m. On Sun, Mar 8, 2009 at 03:30, GregF g.fawc...@gmail.com

[google-appengine] Re: appcfg.py update error after upgrading to 1.1.9 and google-appengine-patch 1.0

2009-03-09 Thread Will
No, before it. After that, I did run appcfg.py rollback, seemingly successfully. One note is I am unable to access code.google.com from China. Not sure if it is relevant. Thanks, Will On Tue, Mar 10, 2009 at 2:40 AM, Marzia Niccolai ma...@google.com wrote: Hi, Does this happen after you

[google-appengine] Re: Query latency is not resolved

2009-03-09 Thread Brandon Thomson
See http://code.google.com/status/appengine/detail/datastore/2009/03/09#ae-trust-detail-datastore-query-latency Obviously it is too early to tell but it looks like it is back to similar levels as before the previous maintenance. --~--~-~--~~~---~--~~ You received

[google-appengine] Re: *** BigTable vs SQLite vs MySQL ***

2009-03-09 Thread Ryan Lamansky
The App Engine datastore is pretty slow for individual actions. It's specialty is being able to do those things with 50,000 concurrent users. -Ryan On Mar 9, 4:32 pm, Let Delete My Apps davide.rogn...@gmail.com wrote: Back to the past: I planned to migrate a python app ... but my tests on

[google-appengine] Re: query.count(1000) equal to exception Timeout()

2009-03-09 Thread Ryan Lamansky
Increment a stored counter as you add values then check that result. It runs instantly and there's no upper limit. -Ryan On Mar 9, 6:37 pm, magocrab guayu@gmail.com wrote: Whenever the query returns a large number of results and using the count() function to count the value of returned

[google-appengine] Re: How big memcache can grow

2009-03-09 Thread Ryan Lamansky
The last I heard, Google's memcache allows about 100MB of data. After that, it starts pushing things out in a least-recently-used order. Nothing is guaranteed with memcache, though. You have to design your app to still function even if the cache isn't holding anything very long. -Ryan On Mar

[google-appengine] Re: Combining a db.delete() and a db.put() into one trip

2009-03-09 Thread Ryan Lamansky
If they're in the same entity group, you can put and delete in a single atomic transaction. It still takes two calls, but they either both succeed or both fail. -Ryan On Mar 9, 8:01 pm, James thelevybre...@gmail.com wrote: You can save or delete a list of entities at once. Is there any way to

[google-appengine] Unbelieveable jump in stored data.

2009-03-09 Thread Josh Cronemeyer
This afternoon I had less than 1GB stored data, which took me several months to accumulate. This evening the dashboard is telling me I have used nearly 3GB stored data! It doesn't look like my traffic levels or number of users have changed significantly. This has to be wrong. Could it be

[google-appengine] Re: Unbelieveable jump in stored data.

2009-03-09 Thread Jonathan Ultis
According to this message, google may be counting index sizes in the quota now. http://groups.google.com/group/google-appengine/msg/a16edddcc6db424f On Mar 9, 8:25 pm, Josh Cronemeyer joshuacroneme...@gmail.com wrote: This afternoon I had less than 1GB stored data, which took me several months

[google-appengine] Re: Somewhat Disappointed.

2009-03-09 Thread Tim Hoffman
Here is my guess I would consider a likely second language for gae will be Javascript. google has v8, it runs javascript fast and in a controlled environment, sure there may not be heaps of hi-level framworks, but I could imagine it would be a good candidate. (lots of control over the runtime