[google-appengine] Dashboard IE7 little bug

2009-03-07 Thread Sylvain
Hi, I've just noticed that there is a little bug with the dashboard and IE7. By default with IE7, in the Dashboard page : the button 6hr is selected but the chart shows All. It works fine with FF3 i.e. : the button All is selected by default. Regards

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

2009-03-07 Thread Paul Kinlan
Hi Everyone, Just to let you know I am in the process of open-sourcing a lot of the Apps that I have created. So far I have done - http://www.eweri.com - a url shortening service that gets a lot of use on TweetDeck (http://github.com/PaulKinlan/eweri) - http://www.knowyourprivacy.com -

[google-appengine] Re: cooperate with top Google Apps Engine developer

2009-03-07 Thread Waldemar Kornewald
On Mar 6, 10:18 am, Ben beruss...@gmail.com wrote: On Mar 6, 12:30 am, dalenewman dalenew...@gmail.com wrote: Alex, You should use oDesk (www.odesk.com) for this.  One catch though -- you'll have to pay the developers :-) ... if you can call $2/hr getting payed. oDesk is a joke.

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

2009-03-07 Thread Brandon Thomson
These may be relevant: http://groups.google.com/group/google-appengine/browse_thread/thread/517c7da78454da66/939a67117246d120?lnk=gstq=log+storage#939a67117246d120 http://code.google.com/p/googleappengine/issues/detail?id=452 Basically you need to get the entity before you delete or it will be

[google-appengine] Django caching problem.

2009-03-07 Thread wonglik
Hi I am trying to optimize my app by adding template caching (http://docs.djangoproject.com/en/dev/topics/cache/? from=olddocs#template-fragment-caching) {% load cache %} {% cache 3550 news version %} {% include 'include/articles.html' %} {% endcache %} The problem I am

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

2009-03-07 Thread Myroslav Opyr
Hi, Our apps were pushing GAE limits before quota upgrades (10Mb vs 1Mb). After that we've been able to simplify and speed up applications greatly, with new quotas in mind. And a week ago everything broke (soon after introduction of billing). We've been watching Datastore Query graphs and

[google-appengine] Re: Latency problem still really a problem

2009-03-07 Thread Larry
I've got stable performance in my application. It consistently runs 3 to 4 times slower than it used to. Apparently, application performance should improve on Monday but in the mean time performance is quite poor... http://code.google.com/status/appengine On Mar 6, 8:05 pm, cz czer...@gmail.com

[google-appengine] Re: App Engine geographic distribution

2009-03-07 Thread Myroslav Opyr
Hi, GAE datacenters are not yet distributed, but will be (or are already with hardware maintenance that took place a week ago) as time goes on. Bear in mind that to commit transaction you'll need extra 50ms to ensure that transaction is committed in all datacenters serving GAE apps worldwide.

[google-appengine] Re: cooperate with top Google Apps Engine developer

2009-03-07 Thread dalenewman
On Mar 6, 4:18 am, Ben beruss...@gmail.com wrote: ... if you can call $2/hr getting payed. oDesk is a joke. Ben. I respectfully disagree with your opinion. I wouldn't write off odesk as a joke. If you get connected with a good partner, you can get guaranteed payments on hourly rates and

[google-appengine] Re: ValueError: invalid literal for int() with base 10

2009-03-07 Thread djidjadji
self.request.get(id) returns a unicode string. You must first make a regular string out of it before casting it to int. photo = Photo.get_by_id(int(str(self.request.get(id 2009/3/1 wsun sunwe...@gmail.com: I upload an image to GAE, *.py: photo =

[google-appengine] Re: cooperate with top Google Apps Engine developer

2009-03-07 Thread Brian
Here here. I can share a funny story I once built a phone system for someone that wanted to set up a 900 number (remember those?) so you can call in and pay two dollars a minute to listen to samples of some New Age music catalog (think Enya or something even more awful). It was quite possibly

[google-appengine] Re: cooperate with top Google Apps Engine developer

2009-03-07 Thread Sharp-Developer.Net
Hi Waldemar, I'm a developer myself and used Elance to hire App Engine Developers due my lack of expirience with Python and tight schedule. A project ($100) was completed on time and I was happy with the work. So I would say it quite possible to find someone for reasonable price and acceptable

[google-appengine] Re: How to do this?

2009-03-07 Thread djidjadji
You can add hidden fields to your form that contain the data from the previous forms. And when the final form is accepted you create the user in the datastore. 2009/3/7 arnie parvez...@rediffmail.com: It is still very confusing as I am not able to point out what to do Let me explain my

[google-appengine] xml feed into datastore

2009-03-07 Thread davepreston
I'm new to python GAE, so go easy on me :). I'm trying to pull xml data and put it in the datastore. I've created my db.Model class and I've got urlfetch.fetch(url) working to retrieve the xml data. What's the most efficient way of putting the retrieved xml content (it could be JSON if that

[google-appengine] Re: Go2 is going to pay the bill. Go2 accepts donation now. Any cooperation is welcome.

2009-03-07 Thread yidong
AD? I think so. Is the site Go2 doing something like this ?? ''' 4.4. You may not develop multiple Applications to simulate or act as a single Application or otherwise access the Service in a manner intended to avoid incurring fees. ''' I think so. On 3月7日, 下午3时12分, admin go2

[google-appengine] Question: GAE and externally hosted databases

2009-03-07 Thread whichpaul
Is it possible to connect to externally hosted databases (eg. mysql running on a server outside of the google network) from an application running on the GAE? I'm currently evaluating GAE for a new web application that I need to develop. I'm not convinced that the datastore is right for my

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

2009-03-07 Thread Let Delete My Apps
An example from my last app: results = [] for app in apps: results.append({appname : app.appname}) # for JSONP callback = this.request.get(callback) this.response.headers[Content-Type] = text/javascript callback = %s(%s) % (callback, json.write(result)) this.response.out.write(callback)

[google-appengine] BadRequestError: offset may not be above 1000

2009-03-07 Thread Let Delete My Apps
Hi All, I see this error using this code: query.fetch(1000, offset=1001) --~--~-~--~~~---~--~~ 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: Go2 is going to pay the bill. Go2 accepts donation now. Any cooperation is welcome.

2009-03-07 Thread Let Delete My Apps
$360 ??? :-O On Mar 7, 8:12 am, admin go2 go2apps...@gmail.com wrote: Go2 is the second popular app on GAE. Go2 is very fast. Sometimes it is faster than you visiting the website directly. Go2 also supports to sign in lots of web sites, including bebo etc. . There are more than 10,000

[google-appengine] appspot.com - Traffic Details From Alexa

2009-03-07 Thread Let Delete My Apps
This site is very useful (but is it reliable?) http://www.alexa.com/data/details/traffic_details/appspot.com --~--~-~--~~~---~--~~ 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: Basic Python GSQL Question..

2009-03-07 Thread djidjadji
You only create the query you have to execute it to fetch the objects. If you print your object_a variable you will see it is a Query object. # you have to use the same limit number, or leave it out of the query objects = object_a.fetch(200) objects.extend(object_b.fetch(200)) for object in

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

2009-03-07 Thread GregF
Raw data is good - I didn't realise you could click through to the performance graphs on the status page. But currently it only shows the past performance, and leaves us guessing about the future. During the recent issue, I posted a complaint about lack of feedback, and Pete Koomen's response

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

2009-03-07 Thread GregF
On Mar 8, 4:21 am, Myroslav Opyr myros...@quintagroup.com wrote: Google Engineers know more, but don't share with us. From outside it appears as if some heavy apps launched in production mode on GAE (when additional paid quotas allowed that), and that brought whole GAE infrastructure to

[google-appengine] FYI: accounting for batch Datastore and Memcache gets/puts.

2009-03-07 Thread David Wilson
Just a small note for anyone who might care: memcache.get_multi, memcache.set_multi, db.put, and db.get all appear to count as a single call in quota accounting. This isn't quite clear from the documentation. Additionally, batch DS fetches of 32 entities (by key) is only marginally slower (at

[google-appengine] Re: Go2 is going to pay the bill. Go2 accepts donation now. Any cooperation is welcome.

2009-03-07 Thread admin go2
Andrew Badera: You are right. I should solicit donations on Go2 web, not here. Indeed, I have made a donation page on Go2 website. I just copied it here without modifying. Posting it here , the main idea is I want to find some cooperation here, not donation. We all develop on gae. I think we can

[google-appengine] Re: appspot.com - Traffic Details From Alexa

2009-03-07 Thread admin go2
http://www.alexa.com/data/details/traffic_details/appspot.com It can be reference, not reliable. Let Delete My Apps wrote: This site is very useful (but is it reliable?) http://www.alexa.com/data/details/traffic_details/appspot.com --~--~-~--~~~---~--~~ You

[google-appengine] Re: BadRequestError: offset may not be above 1000

2009-03-07 Thread Wooble
On Mar 7, 5:05 pm, Let Delete My Apps davide.rogn...@gmail.com wrote: Hi All, I see this error using this code: query.fetch(1000, offset=1001) RTFM before deleting all of your apps. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[google-appengine] Re: Delete causes very highloads

2009-03-07 Thread Guy Rutenberg
Hi, On Mar 5, 9:34 am, Alex Popescu the.mindstorm.mailingl...@gmail.com wrote: Guy, I am not sure I understand your code. Basically, it says: delete whatever ModelName the query returns. Is this what your app is supposed to do? I'm trying to delete everything in ModelName. I tried to fetch