[google-appengine] Datastore Problem

2009-08-03 Thread Venkat Rao
Hello, I am writing a simple datastore query. I am using django templates in the project. Here is my model: class Projects(db.Model): name = db.StringProperty() description= db.StringProperty(multiline=True) Completed=db.BooleanProperty() class ProjectImages(db.Model): reference = db.Re

[google-appengine] Re: Something is wrong with CPU time calculations

2009-08-03 Thread Mark Jones
Oh yea, to add some other #'s 18.5 hours CPU eaten by: 793238 of 141241791 Datastore Calls which consumed 14.56 of 1243.85 Datastore CPU hours and did so with less than 247859 of 4320 requests Something does not add up. On Aug 3, 11:26 pm, Mark Jones wrote: > I added ~ 1/4 million simple It

[google-appengine] Something is wrong with CPU time calculations

2009-08-03 Thread Mark Jones
I added ~ 1/4 million simple Items last night and managed to consume 12 hours of CPU time in under 1.5 hours of wall clock time. Here is the model, below is the code. I don't know how much simpler this could get. Account and Tenant are essentially EMPTY objects having keys and their name in the

[google-appengine] GQL query failed to return a qualifying entity

2009-08-03 Thread phtq
In our application (kbdlessons version 1-01) we have just had a case where a query in our application failed to return a record which definitely exists. We were able to reproduce this problem using the Dataviewer page off the app engine dashboard. We put in this query using the Dataviewer: SELEC

[google-appengine] Re: Need help with Email, getting an odd error

2009-08-03 Thread jonathan
I am getting this exception thrown as well. But I am getting it EVERY time through a certain code path. I am using app-engine-patch (with Django 1.1) and on my staging server I am stubbing out the mail method to rewrite the "to" addresses with my name instead. So that my staging server doesn't se

[google-appengine] Re: Remote API (or similar) for java?

2009-08-03 Thread Nick_Zaillian
Just to clarify: I wouldn't mind working in Python on the local end of things if that were necessary (because that would just mean rewriting one or two routines). What I am unwilling to do is to rewrite my whole application in Python just so that I can make use of the Remote API/AppRocker/App3.

[google-appengine] Custome search for google appengine cookbook

2009-08-03 Thread Kuber
appengine cookbook (http://appengine-cookbook.appspot.com) is a great place to share and find tips and code snippets of appengine. One of the things it lacks is searching. I don't know why since google is known as a search company. As I have subscribed the feed of cookbook in my google reader, I

[google-appengine] Re: Limit for db.get?

2009-08-03 Thread 'Αλκης Ευλογημένος
There is a 1mb hard limit on API requests. On Tue, Aug 4, 2009 at 12:53 AM, Oliver Zheng wrote: > > I have run into a request too large for db.get (not db.put). It > appears that sometimes I may need to request for thousands of tiny > objects, and this is hitting a barrier. What is the limit and

[google-appengine] Re: Intermittent delete failures

2009-08-03 Thread rkluin
I guess taking a couple day off from the problem helped. When the issue started I thought the fact that every time the file was reloaded it worked was strange. I realized why today. The issue is in how I was defining my "placeholder" properties. From the documentation I was, incorrectly, under

[google-appengine] Sorting in Memory

2009-08-03 Thread MajorProgamming
What is the most efficient way to sort Datastore results in memory? 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@googlegroup

[google-appengine] Remote API (or similar) for java?

2009-08-03 Thread Nick_Zaillian
I would like to be able to do some batch processing for a site I'm running on GAE (at nicksmap.org). Right now I've got various database maintenance routines bound to URLs that I hit with cron. Problem is that one of these routines requires a few minutes to excecute. And can (and sort of have)

[google-appengine] Re: update_indexes error

2009-08-03 Thread Jeff S (Google)
It looks like this app was over quota for datastore indices so I reset it. You should be all set, please let me know if you are still seeing quota errors. Happy coding, Jeff On Sat, Aug 1, 2009 at 10:10 AM, chemuto wrote: > > Hi, > > I cannot update my indexes. Getting "Server Error 500". Haven

[google-appengine] Re: Non-default app versions: Are they first-class apps?

2009-08-03 Thread Jeff S (Google)
Hi Bill, All versions of an app share the same quota pool as well, so non-default versions should have the same constraints in place as the default version of the app. Cheers, Jeff On Sat, Aug 1, 2009 at 2:02 PM, Bill wrote: > > It's been suggested that a website could use different app versio

[google-appengine] Limit for db.get?

2009-08-03 Thread Oliver Zheng
I have run into a request too large for db.get (not db.put). It appears that sometimes I may need to request for thousands of tiny objects, and this is hitting a barrier. What is the limit and what is it determined by? Thanks, Oliver --~--~-~--~~~---~--~~ You recei

[google-appengine] Re: Text Search within data store

2009-08-03 Thread Bill
There are also posts in the language-specific Google groups for App Engine. The search that Barry suggested only covers the posts from the general App Engine group. (This is one problem of segregating all App Engine discussion across multiple language groups.) I've released an open source full

[google-appengine] Re: dictionary displays problem

2009-08-03 Thread djidjadji
Does this work? {%for key in dictionary %} {{key}}:{{display.key}} {%endfor%} 2009/8/3 oscarWu : > > I wanna put my dicitonary object on template > sth more like > > > > {%for value,key in dictionary.items%} >     display key:display value > {%endfor%} > > > > but my1 doesnt word, any1

[google-appengine] Sms

2009-08-03 Thread Alan
Hi Nick, Highly appreciate if you can activate my account too. Tks & regards. --~--~-~--~~~---~--~~ 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@google

[google-appengine] Re: Persisting Enum values?

2009-08-03 Thread Jeff S (Google)
Hi Tom, It should be possible to persist objects that use enums without needing to do your own additional mapping. I talked this over with Max Ross who frequents the Java runtime discussion group ( http://groups.google.com/group/google-appengine-java) and he pointed out an example in the JDO unit t

[google-appengine] Task Queue not being processed

2009-08-03 Thread Brian
Hello, Is there an issue with task queues this afternoon? My app's task queue is not being processed (worldwidelexicon). To verify the problem is not in my code, I scheduled some dummy queue entries that will query a /heartbeat request handler that returns a timestamp. It's working fine, so I kno

[google-appengine] Re: Creating a new application

2009-08-03 Thread Jason Salas
Can you post the code you're using? This will make it easier to diagnose what's happening. And are you using Python or Java? On 8/1/09, dars...@fuzify.com wrote: > > Hi, > > I am trying to create a new application for the GAE(fuzify-www). On > the form(/start/createapp?) when I click Save, It j

[google-appengine] Re: Text Search within data store

2009-08-03 Thread Barry Hunter
Try searching the archives http://groups.google.com/group/google-appengine/search?q=text+search&start=0&scoring=d&; there have been a number of implementations released in recent months, but all are quite limited much like SearchableModel. But if your requiremens are basic may work for you. On 0

[google-appengine] Re: Reading static files

2009-08-03 Thread Barry Hunter
You can't (other than a URLFetch to your own app (ouch!) ) Put the settings file in a folder not declared as 'static'. Any files not marked as such are assumed to be application files, and are accessible from python code. On 03/08/2009, VKM wrote: > > Hi, > > I want to read a static file stor

[google-appengine] Re: Is there a way to have /blog url in GAE display wordpress blog

2009-08-03 Thread Adam
In principle, I think that you could right a RequestHandler that could map requests for my.url.com/blog/* to blog.url.com/*, fetch the requested item with URLFetch and return it. That'd be nasty, though. You'd end up delivering lots of content through AppEngine that otherwise wouldn't be eating up

[google-appengine] Re: Serialised events

2009-08-03 Thread Adam
David, I would suggest using a Request Repeater pattern rather than Task Queues. What you want to achieve might be difficult or impossible with Task Queues. Rather, You can have a request handler, say /processevent, that grabs an event record from the data store table that holds them, processes t

[google-appengine] Re: Multiple datastores

2009-08-03 Thread Adam
You can deploy your application to two different AppEngine application IDs. That will give you complete isolation between the test and production environments. You can not have two different databases, per se. On Aug 3, 5:43 am, Ice13ill wrote: > Hello, i'm using GWT and app engine (eclipse plug

[google-appengine] 10 App limit?

2009-08-03 Thread Joshua Smith
I've been using GAE for a while now, and I'm up to 8 apps. I can easily see needing to exceed the 10 app limit in the next couple of months. Questions: - When, if ever, should we expect this limit to be increased? (Either overall, or for a billable fee?) - Is it OK to use multiple google accoun

[google-appengine] Re: Interact with external server for static "private" files

2009-08-03 Thread Holger
To keep browsers from viewing it all you should include the transmitted video ID into the string (=secret+ID+datetime) which is MD5 hashed. > secure enough to keep casual browsers from viewing it all. Thus an extracted url would be good for an hour of redownload of the same video but not of anoth

[google-appengine] Re: new version of django

2009-08-03 Thread Jaap Taal
Hi Rodrigo, You'll have to install django 1.0 your self. This is quit easy if you use easy_install. Jaap On Sun, Aug 2, 2009 at 8:14 PM, Rodrigo wrote: > > When do you guys are going to add to the SDK the new version of > Django?. > > > > --~--~-~--~~~---~--~~

[google-appengine] Re: Interact with external server for static "private" files

2009-08-03 Thread Jeff Ivany
On Aug 3, 12:08 am, Holger wrote: > The difficulty depends on how 'safe' the solution should be. Fort Knox of course. ;) No, this is just something to share pics and vids with the family so it doesn't have to be guaranteed secure. Just secure enough to keep casual browsers from viewing it all.

[google-appengine] Django 1.1: app-engine-patch 1.1RC

2009-08-03 Thread Waldemar Kornewald
Hi, we've released app-engine-patch 1.1RC which comes with Django 1.1 final. It's a release candidate, so it might still contain a few hidden bugs. Get it here: http://code.google.com/p/app-engine-patch/ Please help with testing and report bugs. Bye, Waldemar Kornewald --~--~-~--~~-

[google-appengine] Re: A single StringListProperty or multiple StringPropertys? (GeoModel)

2009-08-03 Thread Roman N
Answered here: http://stackoverflow.com/questions/1220794 Thanks Nick! On Aug 1, 11:07 am, Roman N wrote: > Hi all, > > If you don't want to read this whole post, skip directly to 'QUESTION > 1' and 'QUESTION 2' below. > > A bit of background first: GeoModel is a library I wrote that adds > ver

[google-appengine] Re: Too Many Versions (403)

2009-08-03 Thread besook.com
我也有相同的问题.不知道怎么解决 I had thit problem too, anyone help me? On Jul 24, 6:08 pm, Euan Adie wrote: > This is affecting me too. I've only got one version listed in the > application dashboard. > > On Jul 21, 11:02 pm, Jeremy Truax wrote: > > > > > Note It seems to be an old issue but not resolved: >

[google-appengine] Is there a way to have /blog url in GAE display wordpress blog

2009-08-03 Thread Natalie Gordon
Hi, I have my app running fine in a subdomain my.url.com. I have a related blog built with wordpress on blog.url.com. For SEO reasons, I'm being asked if there is a way to serve our blog on my.url.com/blog. I can't think of a way to do this. Anyone have any ideas, creative or otherwise? Thanks!

[google-appengine] [appengine-java] Serialised events

2009-08-03 Thread David Given
Hi, I'm trying to write a game using AppEngine. As a result, I need some mechanism for running the game AI. I've considered various architectures and the approach that seems the most workable is to have, in the datastore, a priority queue of events based on timestamp. I post events to the queue,

[google-appengine] Multiple datastores

2009-08-03 Thread Ice13ill
Hello, i'm using GWT and app engine (eclipse plugin) to create an application. I was wondering if i can use more than one "database". If i have a running version and a test version, i need to hava a datastore with witch to test updates. Can anyone tell me what do i need to configure or give a link

[google-appengine] Stockwatcher source code (Java + Eclipse + Datastore)

2009-08-03 Thread John V Denley
Does anyone have a full finished and working version of stockwatcher built in eclipse? Basically the source code for: http://lensticker.appspot.com My version of it just doesnt work, and i cant work out why: http://ucanzoom.appspot.com in hosted mode it says "cant display this website" --~--~-

[google-appengine] dictionary displays problem

2009-08-03 Thread oscarWu
I wanna put my dicitonary object on template sth more like {%for value,key in dictionary.items%} display key:display value {%endfor%} but my1 doesnt word, any1 can provide me specific code ? --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] How to use Picasa API within APP Engine

2009-08-03 Thread moonson
I want to call Google Picasa API to get the list of specific albums within API engine framwork. But it seems that App engine cannot recognize the following modules about Picasa. import modules for Google Picasa import gdata.photos.service import gdata.media import gdata.geo Who can help me to

[google-appengine] Reading static files

2009-08-03 Thread VKM
Hi, I want to read a static file stored in static folder. When I tried reading it, it says dev_appserver.py static file access blocked. Could you tell me how can I read file which stores some of the application settings? Regards, VKM --~--~-~--~~~---~--~~ You rec

[google-appengine] I can't see my registered apps :(

2009-08-03 Thread Karlas
Hi everybody, I registered some apps succesfully (I can manage them after with app SDK and I can upload files, and they are working), but I can't see them at http://appengine.google.com/, or in "My account" Any suggestion? Thank you in advance --~--~-~--~~~---~--~--

[google-appengine] Stockwatcher source code (Java + Eclipse + Datastore)

2009-08-03 Thread John V Denley
Does anyone have a working version of the stock watcher tutorial AFTER the AppEngine part of the tutorial, IE the one with the datastore and the login bits working? (see http://lensticker.appspot.com) Ideally Id like it fully zipped up with all the Eclipse settings correct, so that i can simply i

[google-appengine] DatastoreNeedIndexException: no matching index found.

2009-08-03 Thread Sudan
Hello, I have a very simple web application which retrieves objets from the datastore with the following query: select from " + Entry.class.getName(); Entry is the persistence capable class, full body off which is given at the end of this mail. My application works fine on the hosted mode, and

[google-appengine] new version of django

2009-08-03 Thread Rodrigo
When do you guys are going to add to the SDK the new version of Django?. --~--~-~--~~~---~--~~ 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.c

[google-appengine] Re: Odd problem: data store connection bug?

2009-08-03 Thread Nick Zaillian
A followup: I am still not sure exactly what was/is going on with this issue, but I have come up with a perfectly fine and totally obvious workaround -- setting the map zoom level after defining map zoom handler. As I said before, I've had things set up such that the RPC is made within the click h

[google-appengine] URL rewriting

2009-08-03 Thread jainer
Hello, I want to provide a service that could identify a content located on youtube dailymotion etc that used dynamic URL (eg youtube.com/ *.somthing.*) , and provide a unique URL ( mygooglesitedomain.com/ somthing. The idea is to cancel the double * in those kind of URL. Do you think it is possi

[google-appengine] Static file access for reading custom configuration file

2009-08-03 Thread VKM
Hi, I am writing a yaml configuration file for my application. This config file will contain few static settings (eg. drop down menu options). I may need to add or remove few options from the menu so in that case I will just need to change my yaml file and upload the app and changes will reflect.

[google-appengine] Text Search within data store

2009-08-03 Thread Filosof
I have made an overview of datastore api and have not found the way how to perform usual textual search like www.google.com does.. Is it possible/planned? Or is there any workaround how to perform quick search for entities on the datastore level? Real use case for example. Somebody implemented me

[google-appengine] Re: Create an application but not show in my account

2009-08-03 Thread jay
I have this exact problem. quite frustrating. On Jul 26, 4:12 pm, ez wrote: > Nick, > > Looks like there's a mix-up when a user on a Google Apps domain tries > to sign up forAppEngine with a Google Account: > > Step 1: Create a Google Apps domain and user account > Step 2: Try to sign up forAppE

[google-appengine] Two accounts with the same username

2009-08-03 Thread jay
Hello, I seem to be having a similar problem. I seem to have 2 Google accounts with the same username which is causing me all kinds of problems. I first created a Google account using j...@jaykyburz.com for iGoogle abd Google Docs many years ago. Just recently I moved the domain over to Google

[google-appengine] Odd problem: data store connection bug?

2009-08-03 Thread contrived_username
Hey all. I've encountered an odd problem with my GAE/Java app and I thought I'd see if anybody here could shed light on it. I've got an app (at nicksmap.org) that scrapes craigslist apartment listing pages for information relevant to location, and then attempts to map them. The scraping is all

[google-appengine] are end users concerned with phishing Google Accounts ?

2009-08-03 Thread pca
I'm discovering Google App, and preparing an App for the general public, mostly for FireFox users. User identification will be required, and I'm hesitating between using Google Accounts or my own user identification. I'd be happy to receive comments on my analysis of the 2 options below, and my

[google-appengine] A single StringListProperty or multiple StringPropertys? (GeoModel)

2009-08-03 Thread Roman N
Hi all, If you don't want to read this whole post, skip directly to 'QUESTION 1' and 'QUESTION 2' below. A bit of background first: GeoModel is a library I wrote that adds very basic geospatial indexing and querying functionality to App Engine apps. It is similar in approach to geohashing. The e

[google-appengine] Creating a new application

2009-08-03 Thread dars...@fuzify.com
Hi, I am trying to create a new application for the GAE(fuzify-www). On the form(/start/createapp?) when I click Save, It just redirects to http://appengine.google.com/start. The usual table with the list of applications does not show up. No conformation flash etc. Instead it just shows the "Welc

[google-appengine] Re: Post to discussion forum

2009-08-03 Thread dars...@fuzify.com
> > I sent a post to the discussion forum yesterday and it still hasn't > appeared.  I believe it was titled something like "Insertion > performance" or maybe "Update Performance". > > I got the feedback stating that it would appear later, but  I thought > that meat a few minutes not hours/days.

[google-appengine] Indices Quota Error

2009-08-03 Thread Federico Builes
Hi, What's the official quota for indices count on paid applications? I'm currently at 29 indexes and I'm still seeing: "Your application is exceeding a quota: Datastore Indices Count" I tried vacuuming them but that didn't work, what should I do? App id is maravilhas09. Thank you. -- Fede

[google-appengine] non default version, static files

2009-08-03 Thread bFlood
hello all 1) are there different static files associated with each major version of your app? 2) if so, is the limit on the number of static files the same for all major version or is the aggregate of all your apps major versions? thanks brian --~--~-~--~~~---~--~

[google-appengine] Questions on session tokens

2009-08-03 Thread Dave
A couple questions on tokens: 1) I am reading the documentation on using AuthSub for web applications. I am concerned and confused by this statement: "Google Accounts is not set up to manage large numbers of tokens, and in fact will not issue more than ten valid tokens for any one user to a web

[google-appengine] Re: (Python) Cascade Update from One-To-Many Reference Property Relationship

2009-08-03 Thread Ben from He3
I just noticed the language-specific forum announcement. I will repost in the python specific forum. Sorry! On Aug 3, 10:10 pm, Ben from He3 wrote: > Hi. I am new to Google App Engine so excuse what might be a question > with an easy answer. > > I am trying to understand the 'best' way to handl

[google-appengine] (Python) Cascade Update from One-To-Many Reference Property Relationship

2009-08-03 Thread Ben from He3
Hi. I am new to Google App Engine so excuse what might be a question with an easy answer. I am trying to understand the 'best' way to handle a situation in my application where I have a many-to-one relationship created with a ReferenceProperty. When I delete the 'one' side of the relationship (th

[google-appengine] Re: Interact with external server for static "private" files

2009-08-03 Thread Tim Hoffman
Hi I suggest you look at S3, that included facilities for securing files. T On Aug 3, 11:04 am, jivany wrote: > I've been unsuccessfully searching through the group for some pointers > on how to implement this. > > Here's my scenario - I want to be able to push large images and videos > online

[google-appengine] Re: Setting sender's name using MAIL API

2009-08-03 Thread to
Nick, thanks for the reply. As it's the show-stopping feature for our project, would it be possible to ask when this bug is expected to be fixed? I understand you can't say that for sure, but, based on your experiences, what would be your bet? cheers, to On Jul 29, 7:02 pm, "Nick Johnson (Goog

[google-appengine] Re: When will appcfg.py be able to download/check out?

2009-08-03 Thread Haisheng HU
Thank you Holger! Holger wrote: > Hi Haisheng Hu > > maybe you work on open source code and don't fear anything being > stolen. > > Partial* download capability can be implement easy into Google > appengine. > > Just add the zipme script to your code: > http://www.manatlan.com/blog/zipme___downl

[google-appengine] Re: How to translate an application running on GAE?

2009-08-03 Thread dflorey
You can use my simple commons project, it worked fine for my GAE app: http://commons.apache.org/sandbox/i18n/ On 3 Aug., 07:57, NiklasRTZ wrote: > The sv .po seems to have a colon too much so it doubles with use with > forms. All ready translations from the django library LC_MESSAGES can > get