[google-appengine] Re: Still having trouble with high-cpu warnings for thumbnails.

2008-09-24 Thread Thomas Johansson
At Google IO I believe it was mentioned that TextProperty's are fine for anything that you don't want indexed; They are no less efficient than strings for short data. You might want to look into trying that out with mime and type if you don't filter/order by them. Other than that, I'd suggest try

[google-appengine] Re: Customize login page

2008-09-24 Thread Calvin Spealman
Which is a google-run app, and the undoubtedly have permissions and knowledge of things we haven't or wont be given access to. They would need to find a secure way to let you customize this page, without allowing any attacks. It is not an extremely simple thing to fix. On Thu, Sep 25, 2008 at 12:3

[google-appengine] Re: Django forms, what to do when all the data isn't present

2008-09-24 Thread iceanfire
I'm no Django expert, but here's what I do. Use 'exclude' to exclude stuff: class Message Form(djangoforms.ModelForm): class Meta: model = Message exclude = ['by', 'chat'] Then under the post method of the class that receives the submitted data add: data = RealgroupForm(data=

[google-appengine] BadRequestError: Salary search with over 500K records

2008-09-24 Thread Venkatesh Rangarajan
Folks, I have created a "salary search" application ( http://payrate.appspot.com) I have uploaded around 500K records without an ID Field ( yeah,my Bad). Now i am running into "BadRequestError: offset may not be above 1000" error when the results exceed 1000 and user is on the last page. I displ

[google-appengine] Re: Customize login page

2008-09-24 Thread Sudhir
how about the moderator.appspot.com page? they have a customized login On Sep 24, 1:40 am, Sam G <[EMAIL PROTECTED]> wrote: > It is possible to add a logo if you have tethered the domain to your > Google Apps account. > It uses the logo you upload for Google Apps. > Beyond that, the only thin

[google-appengine] Re: Can't Verify My Account by SMS

2008-09-24 Thread elm
I am having the same problem with SMS Verification and operator EntelPCS from Chile (number +569 9128) elm On 23 sep, 15:07, UltraDaniel <[EMAIL PROTECTED]> wrote: > Hi, I'm having the same problem. My number is +569 8137. > Operator:EntelPCS. > > Please fix > > On Aug 28, 5:20 pm, Gior

[google-appengine] Phone Number Error

2008-09-24 Thread fedekun
Well im from argentina, the code is +54 and my mobile phone company is "movistar" i tried many times but it said error to send it and try again... i read the faq and it said in argentina only "personal" is available, i tried with a friend's phone which is personal but it also didnt work :( --~--~

[google-appengine] Still having trouble with high-cpu warnings for thumbnails.

2008-09-24 Thread iceanfire
I'm still having trouble with high-cpu warnings for thumbnails. This time around I took some profiler data to see what's causing it. But before I get into that here is the model i'm using: class ImageThumb(db.Model): binId = db.IntegerProperty() thumb = db.BlobProperty(default=None) buildin

[google-appengine] Re: Deleting index stuck

2008-09-24 Thread Josh
Marzia, I'm having problems with a lot of stuck indexes that won't delete as well, and uploading gives me "building a composite index failed: ApplicationError 3" Would you be able to help me out please? My app ID is lplanet. Thanks, Josh On Sep 25, 1:53 am, "Marzia Niccolai" <[EMAIL PROTECTED

[google-appengine] Problems with Mobile Numbers

2008-09-24 Thread Ovnicraft
hi, I set my code country and my number but not works. Code : +593 is ok and my number. Solution plz. -- [b]question = (to) ? be : !be; .[/b] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" gro

[google-appengine] Server Not Found Error 404

2008-09-24 Thread aonlazio
Hi, I signed my domain name through Google (via Godaddy indeed) . I just add www.mydomain.com into Google App ID. And add the host name into A record in DNS settings like this mydomain.com216.239.32.21 mydomain.com216.239.34.21 mydomain.com216.239.36.21 mydomain.com216.239.38.

[google-appengine] Stuck indexes and errors 500 and 400

2008-09-24 Thread Josh
Hello, I've been having some troubles with indexes, which currently have broken all my indexes (which in turn has broken all of my deployed app). First problem I had was yesterday, uploading indexes (all autogenerated) gave me an error 500. After perusing the discussion posts I decided to use v

[google-appengine] Re: Mydomain.com --> my app on GAE

2008-09-24 Thread aonlazio
I follow instructions on http://aralbalkan.com/1466 and found out that I only can add www.yourdomain.com but not yourdomain.com May be the problem lies here "Due to recent changes, App Engine no longer supports mapping your app to a naked domain. If your domain registrar supports URL redirects, yo

[google-appengine] Re: Help, Indexes are stuck, Bug #543

2008-09-24 Thread theo
Thanks a ton. On Sep 24, 8:57 am, "Marzia Niccolai" <[EMAIL PROTECTED]> wrote: > Hi, > > I have moved these indexes in to the 'Error' state, you should now be able > to vacuum and re-upload them. > > -Marzia > > On Wed, Sep 24, 2008 at 2:29 AM, theo <[EMAIL PROTECTED]> wrote: > > > I just ran int

[google-appengine] Problem using expando models

2008-09-24 Thread gadgster
Hello, This is probably a newbie question. I'm having problems using the expando model class. I have a model which works fine like this: class childModel(db.Model): user=db.UserProperty() forename=db.StringProperty(verbose_name="Child's forename", required=True) gender=db.StringPrope

[google-appengine] Re: Blob() argument should be str instance, not unicode ???

2008-09-24 Thread Ethan
Just add str(): image = str(self.request.get('image')) On Sep 9, 4:39 am, jago <[EMAIL PROTECTED]> wrote: > Hi, > > I want to store a small image in my appstore. It works well when I > read in the images from python. > > Now I want to store them via a Post from my Java-Client. The Po

[google-appengine] Re: Automatically adding a static index.html to a URL with app.yaml

2008-09-24 Thread Marzia Niccolai
Rather, I made a typo, this works for me: - url: /(.*\.(html|css)) static_files: \1 upload: dir/.*\.(html|css) - url: /dir(.*) static_files: dir/index.html upload: dir/index.html For the first handler, you have to upload the static files from the directory. -Marzia On Wed, Sep 24, 200

[google-appengine] Re: Automatically adding a static index.html to a URL with app.yaml

2008-09-24 Thread SIE
Marzia, Thank you for your reply. I tried the code you suggested, and App Engine still incorrectly searches for styles.css (the file index.html includes) in the home directory instead of in the subdirectory dir. Back to the drawing board. On Sep 24, 9:37 am, "Marzia Niccolai" <[EMAIL PROTECTE

[google-appengine] Re: Google Apps, Python & C++

2008-09-24 Thread Peter Recore
If your app is spending most of its time number crunching and little of its time serving up html to users, app engine is probably not your best option. It is focused on interactive web applications. Do your video editing calculations finish in under 8 seconds? If not, you are probably better o

[google-appengine] Django forms, what to do when all the data isn't present

2008-09-24 Thread Peter
Hi folks, I'm trying to write a basic chat application. my models currently look like *** # models.py from google.appengine.ext import db class Chat(db.Model): name = db.StringProperty class User(db.Model): name = db.StringProperty() ip = db.StringProperty() class Mes

[google-appengine] Registering from a non-listed country

2008-09-24 Thread Milton Segura
Hello, I was wondering what the correct way to input the number for the activation is or if it is even available at the moment. I'm from El Salvador, code 503, and I tried to type "+503 7###", where # is a number, but it wouldn't recognize it. Any help will be appreciated. --~--~-~-

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Martynas Brijunas
Hi Marzia, > We just discovered that this is actually the same issue from last night, and > it has been fixed (a post to the downtime-notify group will be forthcoming). > > If your app added a new index on deploy, the 500 error occurred.  It has > been fixed, so all you need to do is re-upload yo

[google-appengine] Re: Google Apps, Python & C++

2008-09-24 Thread Davide Rognoni
With a pure Python implementation ;-) http://code.google.com/appengine/docs/python/purepython.html On Sep 24, 8:35 pm, Jason <[EMAIL PROTECTED]> wrote: > What is the best way for a calculation hungry app (video processing) > which I have already in C++ to be ported to google apps? > > I'm no pyt

[google-appengine] Re: Help Deleting Corrupt Data from Datastore

2008-09-24 Thread Alexander Pugachev
I saw. I just thought there was no way to know the key. 2008/9/24 Gee <[EMAIL PROTECTED]> > > Hello! > > I was able to solve this by: > > 1) figure out the Key of the record by using Key.from_path() and > GUESSING at the correct ID (acutally iterating) based on the record > before it and after it

[google-appengine] Re: Support for like queries ?

2008-09-24 Thread Alexander Pugachev
Flo, my suggestion was wrong. I read article about bulk upload, and looked into google.appengine.ext.search. There is SearchableModel class which can help solve search problem. 2008/9/24 Alexander Pugachev <[EMAIL PROTECTED]> > From what I see there are no such features. > What I do right now is

[google-appengine] Re: AppeEngine and APIs

2008-09-24 Thread Jeff S
Hi lazer, Yes. This might be a good place to start: http://code.google.com/appengine/docs/usinggdataservices.html Cheers, Jeff On Sep 24, 4:20 am, lazer <[EMAIL PROTECTED]> wrote: > Hi, > > Can we use Youtube API with AppeEngine ? > > Thanks! --~--~-~--~~~---~--~---

[google-appengine] Re: AppeEngine and APIs

2008-09-24 Thread Alexander Pugachev
I think yes: http://code.google.com/appengine/docs/usinggdataservices.html-- there is YouTube link at the bottom. 2008/9/24 lazer <[EMAIL PROTECTED]> > > Hi, > > Can we use Youtube API with AppeEngine ? > > Thanks! > > > > --~--~-~--~~~---~--~~ You received this m

[google-appengine] Re: Data Store - stuck Index

2008-09-24 Thread Marzia Niccolai
Hi, We just discovered that this is actually the same issue from last night, and it has been fixed as of a couple of minutes ago (a post to the downtime-notify group will be forthcoming). If your app added a new index on deploy, the 500 error occurred. It has been fixed, so all you need to do is

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Marzia Niccolai
Hi, We just discovered that this is actually the same issue from last night, and it has been fixed (a post to the downtime-notify group will be forthcoming). If your app added a new index on deploy, the 500 error occurred. It has been fixed, so all you need to do is re-upload your app. -Marzia

[google-appengine] Data Store - stuck Index

2008-09-24 Thread Agustin Fusaro
Hi! When I try to upload my application I get a: Uploading index definitions. Error 500: --- begin server output --- Server Error (500) A server error has occured. --- end server output --- I tried to vacuum the datastore, but I still get the same error. I've been looking at the posts from oth

[google-appengine] Google Apps, Python & C++

2008-09-24 Thread Jason
What is the best way for a calculation hungry app (video processing) which I have already in C++ to be ported to google apps? I'm no python expert but can get by but any help would be great. Ta. --~--~-~--~~~---~--~~ You received this message because you are subs

[google-appengine] Re: How to create SOAP server in GAE

2008-09-24 Thread Davide Rognoni
Yes, saving our time, please :-) QUICK START http://pywebsvcs.sourceforge.net/soappy.txt A simple "Hello World" http SOAP server: import SOAPpy def hello(): return "Hello World" server = SOAP.SOAPServer(("localhost", 8080)) server.registerFunction(hello)

[google-appengine] Re: "bogus escape: '\\xa'" error in app.yaml after migration from 1.1.2 to 1.1.3

2008-09-24 Thread Michael
This issue has been filed and accepted by Google. It's issue #711. If you go to http://code.google.com/p/googleappengine/issues/detail?id=711&colspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary&start=100 and click on the star, then I believe you'll receive e-mail updates as the issue

[google-appengine] Re: Help, Can't Delete Data

2008-09-24 Thread Gee
THANK YOU!! thats exactly what I was looking for... I did recall reading about some undocumented apis, but couldn't find them. anyway, thanks so much! Arun, I couldn't use the dataviewer, because any query that contained that corrupt record would also cause an exception and dataviewer woul

[google-appengine] Re: Help Deleting Corrupt Data from Datastore

2008-09-24 Thread Gee
Hello! I was able to solve this by: 1) figure out the Key of the record by using Key.from_path() and GUESSING at the correct ID (acutally iterating) based on the record before it and after it (since I could never see that record directly because all apis would throw an exception) 2) once I had t

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Martynas Brijunas
> Can you try to vacuum the index again?  It seems that this index got stuck > in the deleting state, and I moved it to 'Error' again. Still no luck... Not a big deal, it does not do any harm to my app. I would hate to waste your time on such a trivial matter. But if you want to use this as a tro

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Marzia Niccolai
Hi, Uploading an index definition with no data won't cause the index to stick. Index building is an offline process, which currently isn't as robust as other datastore operations, and stuck indexes may occur on occasion. The team is working on adding more robustness so this doesn't happen as ofte

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Marzia Niccolai
Hi, Can you try to vacuum the index again? It seems that this index got stuck in the deleting state, and I moved it to 'Error' again. -Marzia On Wed, Sep 24, 2008 at 11:48 AM, Martynas Brijunas <[EMAIL PROTECTED]>wrote: > > Hi Marzia, > > > I did move the indexes, I responded to your post on t

[google-appengine] Re: Help Deleting Corrupt Data from Datastore

2008-09-24 Thread Alexander Pugachev
Maybe you could dump all valid models data, remove that model definition and update application (at this stage datastore should not keep data for that model), add model definition back, update application, and put back valid data? 2008/9/24 Gee <[EMAIL PROTECTED]> > > Hi all, > > I somehow manage

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Martynas Brijunas
Hi Marzia, > I did move the indexes, I responded to your post on this > thread:http://groups.google.com/group/google-appengine/browse_thread/thread/... now that the index is in the Error state it still does not allow me to remove it - Error 500 :( Looks like this is a more general issue than a

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Martynas Brijunas
Hi Marzia, > I did move the indexes, I responded to your post on this > thread:http://groups.google.com/group/google-appengine/browse_thread/thread/... Thank you very much. Would you like me to try and break it once again by repeating what I think I was doing wrong (trying to upload an index fo

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-24 Thread Aramaki
I agree 100%. The high Amount CPU Quota for applications is to low except if you code something trivial like a string manipulation it is ok. But if you want to code a real end user application google app is not a reliable platform at this point because it's not possible to scale your needs. sug

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Marzia Niccolai
Hi, I did move the indexes, I responded to your post on this thread: http://groups.google.com/group/google-appengine/browse_thread/thread/83c67b304db1af9d# Thanks, Marzia On Wed, Sep 24, 2008 at 11:28 AM, Martynas Brijunas <[EMAIL PROTECTED]>wrote: > > Hi Marzia, > > > previous development. I r

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Martynas Brijunas
Hi Marzia, > previous development. I removed the offending index, vacuumed the > indexes on the GAE, but then it got stuck in "Deleting" mode. > > My app id is gentlecolours. Have just checked the index that was stuck in "Deleting" mode and it has now changed to "Error". Is that something that w

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Martynas Brijunas
Hi Marzia/Jonk, > What is the app id with which you are seeing this issue? If you reply to me > with the information, I can look in to it. I saw exactly the same issue as Jonk this morning. It turned out that I was trying to upload an index that referred to a model that did not exist in the cod

[google-appengine] Re: appcfg.py and 500 Server Error

2008-09-24 Thread Marzia Niccolai
Hi, What is the app id with which you are seeing this issue? If you reply to me with the information, I can look in to it. Thanks, Marzia On Wed, Sep 24, 2008 at 10:02 AM, Jonk <[EMAIL PROTECTED]> wrote: > > Greetings, all. > > Has anyone encountered a 500 Server Error when trying to update an

[google-appengine] Re: Line drawing+Text graphics in delivered HTML

2008-09-24 Thread Mahmoud
You might also want to check out the Canvas HTML element: http://developer.mozilla.org/en/Canvas_tutorial On Sep 23, 10:26 am, hbdave <[EMAIL PROTECTED]> wrote: > I am developing a small application, wherein some simple line drawings > (lines, arcs, rectangles) and small amount of labeling text a

[google-appengine] appcfg.py and 500 Server Error

2008-09-24 Thread Jonk
Greetings, all. Has anyone encountered a 500 Server Error when trying to update an app with appcfg.py? Gives output like this: Scanning files on local disk. Initiating update. Cloning 10 static files. Cloning 4 application files. Closing update. Uploading index definitions. Error 500: --- begin

[google-appengine] Re: deploy .net applications in google's web server

2008-09-24 Thread Mahmoud
The latter. On Sep 24, 3:33 am, RPR <[EMAIL PROTECTED]> wrote: > Hi all, > > I have created one web based application in . net. Can I host it on > google's server.Or only python based applications can be hosted? > > Thanx, > RPR. --~--~-~--~~~---~--~~ You received

[google-appengine] Re: Denial of Service Attack on a GAE Application

2008-09-24 Thread Marzia Niccolai
Hi, We've identified an issue that can cause an application to hit one of our short-term quotas after a very sudden spike in traffic, which would prevent it from serving for a short time. We're currently working on a fix to address this issue and expect to have it out shortly. On the broader iss

[google-appengine] Re: Automatically adding a static index.html to a URL with app.yaml

2008-09-24 Thread Marzia Niccolai
Hi, The following works for me: - url: /(.*\.(html|css)) static_files: \1 upload: .*\.(html|css) - url: /dir(.*) static_files: dir/index.html upload: dir/index.html -Marzia On Tue, Sep 23, 2008 at 7:30 PM, SIE <[EMAIL PROTECTED]> wrote: > > Dear Group, > > Suppose that your home directory

[google-appengine] Re: Indexes won't Vacuum or Update

2008-09-24 Thread Marzia Niccolai
Hi Aaron, It seems like the indexes for this app are stuck, if you would like, I can move the stuck indexes to the 'error' state which should allow you to vacuum and re-upload your index definitions. -Marzia On Wed, Sep 24, 2008 at 6:14 AM, Aaron OBrien <[EMAIL PROTECTED]> wrote: > I saw the ou

[google-appengine] Re: Help, Can't Delete Data

2008-09-24 Thread Marzia Niccolai
Hi, google.appengine.api.datastore should allow you to delete by key by calling datastore.Delete(key) -Marzia On Wed, Sep 24, 2008 at 2:56 AM, Gee <[EMAIL PROTECTED]> wrote: > > Hi all, > > I have a Key... xxx > > I want to do > db.delete(db.Key('')) > > but it doesn

[google-appengine] Re: Updating index.yaml

2008-09-24 Thread Arun Shanker Prasad
Hi Marzia, Thank you very much for the quick reply. The # AUTOGENERATED line was there in the index.yaml, I will check the file ending.. I actually tried deleting the index.yaml and the restarted the dev server to get the index.yaml generated. But then I found errors when uploading my app

[google-appengine] Re: Help, Indexes are stuck, Bug #543

2008-09-24 Thread Marzia Niccolai
Hi, I have moved these indexes in to the 'Error' state, you should now be able to vacuum and re-upload them. -Marzia On Wed, Sep 24, 2008 at 2:29 AM, theo <[EMAIL PROTECTED]> wrote: > > I just ran into Bug 543. Now my indexes are stuck (it looks > permenant). I know there is a fix in the work

[google-appengine] Re: Deleting index stuck

2008-09-24 Thread Marzia Niccolai
Hi, Your indexes are now in the 'Error' state, and you should be able to vacuum and re-upload the indexes. -Marzia On Wed, Sep 24, 2008 at 1:45 AM, Martynas Brijunas <[EMAIL PROTECTED]>wrote: > > Hi, same here, the index is stuck on "Deleting", the app name is > "gentlecolours". Thanks! > > >

[google-appengine] Re: Updating index.yaml

2008-09-24 Thread Marzia Niccolai
Hi, If the # AUTOGENERATED line is omitted from your index.yaml file, the dev_appserver will not add any indexes to your index.yaml file, assuming you are adding them by hand. If you notice that the line is there, but the indexes still aren't being added, it's possible that you've run in to a kno

[google-appengine] Re: Line drawing+Text graphics in delivered HTML

2008-09-24 Thread Sylvain
Yes you can. For one of my GAE project, i use this : http://groups.google.com/group/google-appengine/browse_frm/thread/749216adad6c826/d05fe672c980fc88 And it works fine : carreful with CPU Quota (use zlib compression level = 0 or 1) On 24 sep, 10:42, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wr

[google-appengine] [Q] Can User API perform single sign in for other Google web services?

2008-09-24 Thread Yu-Chao Chang
I am working on a project on app engine which could let users upload photo through the web page in my appspot to their photo album on picasaweb. In my understanding, I could user User API to handle the authentication on app engine. However, I can't find a way to extract or obtain the identity from

[google-appengine] deploy .net applications in google's web server

2008-09-24 Thread RPR
Hi all, I have created one web based application in . net. Can I host it on google's server.Or only python based applications can be hosted? Thanx, RPR. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App E

[google-appengine] why i cannot receive The verification code via SMS(from china)

2008-09-24 Thread coalmine
i used the china mobile telephone how can i start the google appengine if i cannot get the verification code? thx -- --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group

[google-appengine] AppeEngine and APIs

2008-09-24 Thread lazer
Hi, Can we use Youtube API with AppeEngine ? 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@googlegroups.com To unsubscribe

[google-appengine] Re: Line drawing+Text graphics in delivered HTML

2008-09-24 Thread [EMAIL PROTECTED]
In the usual Python universe, your best bet would be PIL, the Pyton Image Library. Since you cannot use PIL inside Google App and the Image library appears not to have the functions you need (drawing on a bitmap), I am not sure your problem can be solved inside Google App. A word from above? --~

[google-appengine] Re: URLFetch 5 second timeout - GDocs Feeds Aren't Working

2008-09-24 Thread Sam G
I see what you're saying. It's not possible to use the maxresults or query parameters with the gdata-python-client. In order to use these, you have to operate with raw HTTP. I'm posting here because the GDocs API team told me to. Apparently, there is no plan in the works to fix the response time

[google-appengine] Indexes won't Vacuum or Update

2008-09-24 Thread Aaron OBrien
I saw the outage posting saying: Tonight beginning at around 9:50pm PDT (GMT-7) apps with new indexes were unable to deploy and apps were unable to vacuum old indexes. The issue was resolved at 10:30pm PDT, and all app deployments are functioning smoothly again. However I am still unable to dep

[google-appengine] Re: casting a dictionary

2008-09-24 Thread theaellen
hi djidjadji my data was in a pickle, but it was my own fault! duh. When I looked at the template for the input field I had ' " {{entry}} " ' so it was just doing what I told it to do. Anyhow, now it works and I can capture the data and pictures from any public picasa album. I can store the

[google-appengine] Re: What is the best way to perform search

2008-09-24 Thread Barry Hunter
its hinted at here: http://code.google.com/appengine/articles/bulkload.html how to create searchable entities. On Wed, Sep 24, 2008 at 1:17 PM, Vitaliy <[EMAIL PROTECTED]> wrote: > > For example I have a model > > Foo: > filed1 StringProperty > field2 StringProperty > > how can I search for so

[google-appengine] What is the best way to perform search

2008-09-24 Thread Vitaliy
For example I have a model class Foo: filed1 = StringProperty field2 = StringProperty how can I search for some term using this two fields ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" g

[google-appengine] What is the best way to perform search

2008-09-24 Thread Vitaliy
For example I have a model Foo: filed1 StringProperty field2 StringProperty how can I search for some term using two fields ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post t

[google-appengine] Re: Help, Can't Delete Data

2008-09-24 Thread Arun Shanker Prasad
Hi, Can't u use the dataviewer in the console to delete the data? Thanks, Arun Shanker Prasad On Sep 24, 2:56 pm, Gee <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a Key... xxx > > I want to do > db.delete(db.Key('')) > > but it doesnt work... > > I know I can do >

[google-appengine] Help, Can't Delete Data

2008-09-24 Thread Gee
Hi all, I have a Key... xxx I want to do db.delete(db.Key('')) but it doesnt work... I know I can do db.delete(db.get('x')) but I cannot do this because that record has a corrupt data field... and any time I try to "get" it, it throws an except

[google-appengine] Re: memcache: is it distributed or local?

2008-09-24 Thread Sylvain
Maybe you should look at this issue : http://code.google.com/p/googleappengine/issues/detail?id=732 FYI : it is useless to add "no-cache" to the response (ie. self.headers['Cache-Control'] = 'no-cache') because it is done by default. Regards On 24 sep, 10:59, djidjadji <[EMAIL PROTECTED]> wrote

[google-appengine] Help, Indexes are stuck, Bug #543

2008-09-24 Thread theo
I just ran into Bug 543. Now my indexes are stuck (it looks permenant). I know there is a fix in the works, but would it be possible for someone to unstick me? my app_id is concurrr (3 r's) Thanks so much. --~--~-~--~~~---~--~~ You received this message because

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-24 Thread mitnickcbc
Thank you for digging into this issue, Michael. There are 8 indexes on Account to support different kind of query. 3 options of order, 2 options of filter generates 6 indexes then plus 2 other ones. Only one field is list and it contains very few items and almost never change. It's parent of anot

[google-appengine] Re: memcache: is it distributed or local?

2008-09-24 Thread djidjadji
Hi Tony, after a few other observations I think the Firefox cache is doing things different then I suspect. Now I have added a 'no-cache' to the response for the HTML pages. I will see if the problem is solved. The images are still cached. Djidjadji 2008/9/23 Tony Arkles <[EMAIL PROTECTED]>: >

[google-appengine] Re: casting a dictionary

2008-09-24 Thread djidjadji
It looks like your data is gone through the "pickle" module, have a look in the python manual how to use the string to unpickle it to a dictionary. 2008/9/24 theaellen <[EMAIL PROTECTED]>: > > I have an html form input value where I have a dictionary stashed. > When I read it back with request.PO

[google-appengine] Re: When is GAE going to support Django 1.0?

2008-09-24 Thread Marcel Overdijk
Hi, As GAE 1.1.3 was released is Django 1.0 part of it? In case not, is there any news on updating the helper to Django 1.0? On 6 sep, 10:50, Waldemar Kornewald <[EMAIL PROTECTED]> wrote: > Hey Alex, > > On 5 Sep., 22:58, "Sharp-Developer.Net" > > <[EMAIL PROTECTED]> wrote: > > Hey Waldemar, >

[google-appengine] Re: Deleting index stuck

2008-09-24 Thread Martynas Brijunas
Hi, same here, the index is stuck on "Deleting", the app name is "gentlecolours". 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-appengin

[google-appengine] Updating index.yaml

2008-09-24 Thread Arun Shanker Prasad
Hi all, When ever I run my application locally, I get the following message, INFO 2008-09-24 08:31:09,174 dev_appserver_index.py] Detected manual index.yaml, will not update and none of the new indexes are automatically added to the index.yaml.. I mean there is no change in the yaml file a

[google-appengine] Re: Strange expiration date (now + 1 day)

2008-09-24 Thread Sylvain
I think this is a bug, so i've created an issue : http://code.google.com/p/googleappengine/issues/detail?id=732 On 22 sep, 23:23, Sylvain <[EMAIL PROTECTED]> wrote: > Yes, it's true but the parent page gets a now + 30 minutes > :http://testgapp.appspot.com/nppEvndmbnDzp7vgeVQoc3ygG2okoD > > And

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-24 Thread Michael Hart
Just a couple of questions to clarify - how many indexes are there for the Account entity and are all the fields single dimensional properties, or are there lists in there too? And out of interest, is it the parent of an entity group? I would agree that a single request that involves puttin

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-24 Thread mitnickcbc
Hi Michael, Thanks for putting these thoughts and that eBay best practice article is awesome! It really helps me understand more about distribution system. It also convinced me that global transaction is not that important. And I have refined my code according to this article, but I didn't notice