[google-appengine] Re: My first Webapp: Zip code search - Your advice

2008-11-30 Thread vinodxx
>  Why does it return two answers for 08826 (NJ and CA) and 15901 (NY and > PA).  90210 returns just one answer. > > It seems slow, but that might be network latency. This additional result is the problem I think 90660 33.98857-118.088269 CA PICO RIVERA LOS ANGELES Becau

[google-appengine] Re: how to do text search in GAE?

2008-11-30 Thread kang
anther question...I have some foreign language stored in the datastore...but i can not search them...what can I do ? On Mon, Dec 1, 2008 at 12:24 PM, Alexander Kojevnikov < [EMAIL PROTECTED]> wrote: > > > Thank you for your reply is there any example code about full text > > search with gae? > >

[google-appengine] Re: URLFetch issues on Yahoo Boss

2008-11-30 Thread goo...@ryze.com
anyone else on this? looking like the answer is yezzz -a On Oct 12, 11:44 am, Pratham <[EMAIL PROTECTED]> wrote: > Did you have to unzip the gzipped content ? > > On Aug 14, 5:54 am, Ben <[EMAIL PROTECTED]> wrote: > > > > > Ok folks, > > > Thanks to Vik Singh ofYahooI have the answer... you nee

[google-appengine] Why can't I sign up Adsense for my Google App Engine application?

2008-11-30 Thread IN
When I tried to sign up my App Engine application for Adsense I got this message: URL cannot contain a Google host. The URL I used was the standard App Engine URL: *.appspot.com Thanks, IN --~--~-~--~~~---~--~~ You received this message because you are subscribed

[google-appengine] how to write code about table in template?

2008-11-30 Thread lookon
I want to render table in the response. and the template_value is objects. Then my question is how to write the template file. for example, {% for obj in objects %} code here {% endfor %} --~--~-~--~~~---~--~~ You received this message because you are subscr

[google-appengine] Re: url's in application configuration

2008-11-30 Thread kang
handlers: - url: /gae script: main.py On Sun, Nov 30, 2008 at 9:55 AM, ten_foot_ninja <[EMAIL PROTECTED]> wrote: > > Hello, > I get the following error: > "Not found error: /gae did not match any patterns in application > configuration." > output to my browser when I am enter "http://localhost:

[google-appengine] Re: how to do text search in GAE?

2008-11-30 Thread kang
Thank you. I've got it... and this post help: http://www.johnborwick.com/blog/2008/10/27/appengine_django-basemodel-and-searchablemodel/ On Mon, Dec 1, 2008 at 12:24 PM, Alexander Kojevnikov < [EMAIL PROTECTED]> wrote: > > > Thank you for your reply is there any example code about full text > >

[google-appengine] Re: url's in application configuration

2008-11-30 Thread Alexander Kojevnikov
Remove the trailing slash from this line: - url: /gae/ ...or add a slash to your URL. On Nov 30, 12:55 pm, ten_foot_ninja <[EMAIL PROTECTED]> wrote: > Hello, > I get the following error: > "Not found error: /gae did not match any patterns in application > configuration." > output to my browser

[google-appengine] Re: how to do text search in GAE?

2008-11-30 Thread Alexander Kojevnikov
> Thank you for your reply  is there any example code about full text > search with gae? The source code of the SearchableModel is well documented and contains examples of how to use it: http://code.google.com/p/googleappengine/source/browse/trunk/google/appengine/ext/search/__init__.py Also, go

[google-appengine] Re: Capturing OverQuota Exceptions

2008-11-30 Thread Alexander Kojevnikov
> Is it possible to get the limits that are remaining for a day > programatically, so if it crosses a particular point, I can make the > bulk operations go a little easy. For e.g. if I know that my CPU usage > has become 2% of the total available for a day, I can ease off the > load operations for

[google-appengine] Re: Wrong Ordering Of Query!

2008-11-30 Thread Alexander Kojevnikov
> Yup.  The put() happens in two stages.  During the first stage, queries use > indexes that reflect the old data, and fetches of the entity get the old > data.  During the second stage, queries continue to use indexes that reflect > the old data, but fetches of the entity get the new data.  Once

[google-appengine] Re: Google App Engine Roadmap - Now Published

2008-11-30 Thread hawkett
I have to disagree with that experience - probably each to their own - python certainly has its limitations. I only started using python for GAE - being a J2EE guy for way too long (still). I am enjoyng the freedom of things like closures, instant gratification (change the server code, refresh the

[google-appengine] Re: Error while uploading application

2008-11-30 Thread Xavier Mathews
Did You Check Proxy? On 11/29/2008, Shyam <[EMAIL PROTECTED]> wrote: > > I get the following error while trying to upload an application > > Traceback (most recent call last): > File "D:\Program Files\Google\google_appengine\appcfg.py", line 55, > in > > execfile(script_path, globals()) >

[google-appengine] Re: My first Webapp: Zip code search - Your advice

2008-11-30 Thread Faber Fedor
On Sun, Nov 30, 2008 at 9:34 AM, vinodxx <[EMAIL PROTECTED]> wrote: > > Hello friends, > > I made a Search for Zip Code,City,State and County utility here. > > http://zipcodesearch.appspot.com/ > > Please comment on this application. Why does it return two answers for 08826 (NJ and CA) and 1590

[google-appengine] Re: BadFilterError: "Only one property per query may have inequality filters"

2008-11-30 Thread Xavier Mathews
Did you post this in the issue tracker? Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] "Fear of a name, only increases fear of the thing itself." On Sun, Nov 30,

[google-appengine] url's in application configuration

2008-11-30 Thread ten_foot_ninja
Hello, I get the following error: "Not found error: /gae did not match any patterns in application configuration." output to my browser when I am enter "http://localhost:8080/gae"; My app.yaml is as follows: application: foo version: 1 runtime: python api_version: 1 handlers: - url: /gae/ scr

[google-appengine] Re: ANT task to start/stop/deploy appengine?

2008-11-30 Thread WorldsGreatest
Hi, i tried this also, but I am new to Python and didn't get python tasks running properly from within ant. So I hacked the scripts and copied them into the eclipse project. I would prefer ant tasks. Can you please give a hint what you did to run the scripts...? Thanks! On 30 Nov., 14:47, jago

[google-appengine] Re: How To Communicate Between App Engines

2008-11-30 Thread duan wenhui
I think google.appengine.api.urlfetch.fetch() is what you need. On Sun, Nov 30, 2008 at 12:39 AM, jeffkyjin <[EMAIL PROTECTED]> wrote: > > I have create some applications in App Engine. If I want to build a > distributed system which will use many application in App Engine. > Because the quota

[google-appengine] My first Webapp: Zip code search - Your advice

2008-11-30 Thread vinodxx
Hello friends, I made a Search for Zip Code,City,State and County utility here. http://zipcodesearch.appspot.com/ Please comment on this application. regards, Vinod --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] SOAP Web Service

2008-11-30 Thread Martin
Hello all! I am new to Python and App Engine... I would simply write a small SOAP Web Service for Google App Engine. Does anybody has written a tutorial or could point me out a library that I could start with? Thanks! --~--~-~--~~~---~--~~ You received this messag

[google-appengine] Re: Best practices implementing paging

2008-11-30 Thread thuan
It's possible to achieve the same result by maintaining a general index of all the items of the same class. The index would be a list, which could be massive and takes times to be loaded but if memcached, would not be that impressive to use. Using a list would enable you: 1) to sort items by a spe

[google-appengine] Re: ANT task to start/stop/deploy appengine?

2008-11-30 Thread karmona
Why don't you use Eclipse to do this? (http://blog.karmona.com/ index.php/2008/11/21/google-app-engine-development-environment/) On Nov 30, 3:47 pm, jago <[EMAIL PROTECTED]> wrote: > Hi, > > Does somebody have an ANT script that starts/stops the appengine > locally and deploy the appengine remo

[google-appengine] Re: How To Communicate Between App Engines

2008-11-30 Thread Kajikawa Jeremy
When are the payment plan options coming into effect? Im already using 3 Appspot domains and have need of more along with additional db space will be required for each of the Applications I am making. I am currently working on a distributed system. I am looking at needing to scale upwards for 1

[google-appengine] Error while uploading application

2008-11-30 Thread Shyam
I get the following error while trying to upload an application Traceback (most recent call last): File "D:\Program Files\Google\google_appengine\appcfg.py", line 55, in execfile(script_path, globals()) File "D:\Program Files\Google\google_appengine\google\appengine\tools \appcfg.p y", l

[google-appengine] Re: how to do text search in GAE?

2008-11-30 Thread kang
Thank you for your reply is there any example code about full text search with gae? On 12/1/08, Dan Sanderson <[EMAIL PROTECTED]> wrote: > The datastore does not have a built-in feature for doing full-text search of > an entity property. You can maintain your own search indexes, as the search >

[google-appengine] Re: Best practices implementing paging

2008-11-30 Thread Adam
If anyone cares, I just made a big post on my blog about this code and a particular use case. Also, you can see the code in action, as it was extracted from my blogging software, which runs on AppEngine: http://blog.adamcrossland.net/showpost?id=aglhZGFtY2Jsb2dyLQsSCUJsb2dJbmRleCIJYWRhbWNibG9nDA

[google-appengine] Re: Get time in milliseconds for later use in javascript

2008-11-30 Thread Jesaja Everling
Hi Peter, maybe this helps: http://www.djangosnippets.org/snippets/387/ I have used it before, worked fine. Best Regards, Jesaja Everling On Sun, Nov 30, 2008 at 11:17 PM, Peter <[EMAIL PROTECTED]> wrote: > > Hi folks, > I want to generate a integer that represents the current date so > th

[google-appengine] Get time in milliseconds for later use in javascript

2008-11-30 Thread Peter
Hi folks, I want to generate a integer that represents the current date so that I can do var d = new Date(valueFromAppEngine); I'm using django and currently trying this, which of course doesn't work (otherwise I wouldn't be posting this.) {{lastUpdate|date:"U"}} where lastUpdate = datet

[google-appengine] Re: Embedding VRML

2008-11-30 Thread Jesaja Everling
Hi Kieran, I think it should work if you put your *.wrl-files in the static-directory: app.yaml: handlers: - url: /media static_dir: media html: wrote: > > Hello > I am trying to embed some VRML in my HTML using: > TYPE="model/vrml" >WIDTH="128" >HEIGHT="128" >

[google-appengine] Re: how to do text search in GAE?

2008-11-30 Thread Dan Sanderson
The datastore does not have a built-in feature for doing full-text search of an entity property. You can maintain your own search indexes, as the search module does, but this can be expensive. (The search module included with the SDK is not very practical, and can result in very large indexes.) -

[google-appengine] Embedding VRML

2008-11-30 Thread Kieran
Hello I am trying to embed some VRML in my HTML using: When i run this with the dev_appserver on localhost:8080 it just displays a black square and no cube image. Any ideas on why this is or on how to embed VRML in HTML? Thnaks! --~--~-~--~~~---~--~~ You received

[google-appengine] issues with to_xml()

2008-11-30 Thread hawkett
Hi, The output of Model (or Expando) to_xml() looks something like below tag:app-id.gmail.com,2008-11-30:MyKind [agtkaXNvcy13ZWF3ZXIjCxIFU7NvcGUiC3NlZWRQcm0jZXNzDAsSB0NvdnRleHQYCQw ] 2008-11-30 19:13:52.477930 Jerome tag:app-id.gmail.com, 2008-11-30:MyOtherKind [agtkaXNvcy13ZWF3ZXIWD

[google-appengine] Re: Converting .wav to .mp3

2008-11-30 Thread egilchri
I could store them on App Engine, but I don't wanto to exceed quotas, so I'm storing them in S3. On Nov 29, 11:19 pm, kang <[EMAIL PROTECTED]> wrote: > how to store these wav file? > > On Sat, Nov 29, 2008 at 1:18 AM, egilchri <[EMAIL PROTECTED]> wrote: > > > I have an App Engine app (http://vnot

[google-appengine] Re: No module name pwd?

2008-11-30 Thread Devel63
This is fine now ... just a typo on my part ... imported user when I should have imported users from appengine. Strange that it works in the sandbox and not production, though. On Nov 29, 5:02 pm, Alexander Kojevnikov <[EMAIL PROTECTED]> wrote: > > Note that this all works fine on my local sandb

[google-appengine] Re: How To Communicate Between App Engines

2008-11-30 Thread Peter Recore
The TOS does seem to be a bit vague. If I design my app as a collection of disjoint web services, and decide to implement each web service in a different app, is that subverting the quota system? Let's say I was writing a facebook clone. I might have an image processing service, a 'profile edit

[google-appengine] BadFilterError: "Only one property per query may have inequality filters"

2008-11-30 Thread NoIEbrowser
Hi All, I see the error when I run this code: query = MyModel.all() query.filter('my_field1 >=', 123) query.filter('my_field2 <=', 123) print query.get() I found this work around: Marzia Niccolai: "You may be able to work around this by storing the start and end date in two separate entities,

[google-appengine] ANT task to start/stop/deploy appengine?

2008-11-30 Thread jago
Hi, Does somebody have an ANT script that starts/stops the appengine locally and deploy the appengine remotely? I have the run/deploy part working but don't know how to stop the thing :( --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[google-appengine] Re: Running processes in the background

2008-11-30 Thread Jonathan B
Hi, On Nov 28, 11:26 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > and terminated on response. In attempt to overcome this limitation, I > downloaded the Google App Engine development env. and spawned a > thread. Surprisingly, the result is the same: the "main thread", which > produces t

[google-appengine] Capturing OverQuota Exceptions

2008-11-30 Thread Raja
I have an application which has a few operations for loading and deleting data. Because of the DeadlineError issues, Ive broken down both the Loading and Deleting to about 50 entities at a time and keep auto-refreshing the page till all my data is loaded/deleted. Even with this, I anticipate to g

[google-appengine] how to do text search in GAE?

2008-11-30 Thread lookon
I've read the article http://code.google.com/appengine/articles/bulkload.html but I found it not work well...How to do text search in GAE? wish you can help me~ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google

[google-appengine] App Engine Code Challenge - write a tetris playing algorithm

2008-11-30 Thread russ.au
Hi all, Here's my attempt to learn App Engine / python. It's a tetris code challenge, you write a tetris playing algorithm, and the app challenges your algorithm. You can write the algorithm in anything that can do cgi: php, asp.net, jsp, etc. I've provided a sample client that you can easily

[google-appengine] Re: How To Communicate Between App Engines

2008-11-30 Thread Andrew Badera
Since when did resource quotas == security mechanisms? Apples and oranges, but if they ARE considered the same by Google, then the ToS needs to be cleaerer. If I can use 10 * x, what difference does it make if I do the same thing ten times over? Apples and oranges. Thanks- - Andy Badera - [EMAIL