[google-appengine] Is there a way to specify a cron job run between two time point?

2009-06-10 Thread xiaojay
for example : I want my job to be runned every 5 mins between 12:00 to 18:00 every day --~--~-~--~~~---~--~~ 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] How do I limit searchable_text_index using SearchableModel?

2009-06-10 Thread ogterran
Hi, When I create a datastore model using SearchableModel, it creates a __searchable_text_index column, for full text search. If I don't want all the columns to be part of the index for search, how do I exclude columns for full text search? i.e. I don't want pid, site, and url to be part of the

[google-appengine] Re: How do I limit searchable_text_index using SearchableModel?

2009-06-10 Thread Ian Lewis
ogterran, Unfortunately the SearchableModel indexes all StringProperties and TextProperties in the model. You will need to create another model that contains only the items you want to index. Something like: class Product(db.Model): pid = db.StringProperty(required=True) title =

[google-appengine] Re: Verify Your Account by SMS from Uruguay

2009-06-10 Thread Nick Johnson (Google)
Hi, Your account should now be activated. -Nick Johnson 2009/6/9 ankha...@gmail.com ankha...@gmail.com Does anyone know how to verify one's account if you are living in Mongolia? I entered my number in the format required by the verificator but it always gives Mobile Number or Username

[google-appengine] Re: AppSpot ID and Domain

2009-06-10 Thread Nick Johnson (Google)
Hi Feris, There's nothing stopping someone adding a subdomain of their domain as an alias to your app. This doesn't consume resources, however - only people visiting it will do so, in the same manner as if they had visited any other valid domain for your site. If you wish to prevent someone from

[google-appengine] Re: DB Model for a tree

2009-06-10 Thread Nick Johnson (Google)
Hi Ben, You have two options here, either of which would appear to suit your situation very well: 1) Use App Engine's built in support for parent entities and entity groups. When creating a node, pass the parent= argument to the constructor, passing the key or model instance of the parent node.

[google-appengine] Re: How ReferenceProperty's work

2009-06-10 Thread Nick Johnson (Google)
Hi Stephen, Your supposition is correct: App Engine will perform a fetch the first time a ReferenceProperty is resolved, even if that entity has already been fetched by resolving other ReferenceProperties in the same request. You can work around this by using

[google-appengine] Re: Help, Help, can't verify account by SMS

2009-06-10 Thread Nick Johnson (Google)
Hi mypine, Your account should now be activated. -Nick Johnson 2009/6/6 mypine myp...@gmail.com I can't verify account by SMS when I create an app. Please help me, thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[google-appengine] Re: problem with the images api

2009-06-10 Thread Nick Johnson (Google)
Hi Sebastian, Can you please be more specific than fails sometimes? What goes wrong when it doesn't work? -Nick Johnson On Mon, Jun 8, 2009 at 2:21 PM, Sebastian Aviña sebastianav...@gmail.comwrote: I have the following python code, but it fails sometimes, and sometimes works fine... the

[google-appengine] Re: can pyamf run on app-engine-patch?

2009-06-10 Thread capoista
Hi Ian, Thanks for showing an interest. Just to update you - I was getting a python import exception so I reduced my gateway.py file down to 2 lines; import wsgiref.handlers from pyamf.remoting.gateway.wsgi import WSGIGateway the 2nd line caused the exception so I swapped my pyamf folder with

[google-appengine] Re: Files served to IE being truncated

2009-06-10 Thread Christian Plesner Hansen
It turns out that if I access my app through localhost:8080 there is no problem, it is only when I go through hostname:8080. On Jun 8, 1:07 pm, Christian Plesner Hansen christian.plesner.han...@gmail.com wrote: One file where I've seen this issue was 9301 bytes long and 4275 bytes were sent.  

[google-appengine] Re: Low Overhead CapabilityDisabledError Check

2009-06-10 Thread Nick Johnson (Google)
Hi Greg, You might want to check out the Capabilities API: http://code.google.com/p/googleappengine/source/browse/trunk/python/google/appengine/api/capabilities/__init__.py It will let you determine if a particular service is expected to be unavailable. -Nick Johnson On Mon, Jun 8, 2009 at

[google-appengine] Re: Virus Scanning

2009-06-10 Thread Nick Johnson (Google)
Hi lent, No, App Engine does not virus scan incoming requests. Very few requests contain anything that could embody a virus (file uploads only, essentially), and scanning all requests for viruses would add a high level of overhead (and latency) to App Engine requests. -Nick Johnson On Sat, Jun

[google-appengine] Re: Full text search with whoosh, experiences?

2009-06-10 Thread GenghisOne
Hi Nick, Like Andrew and a few others, I'm trying to figure out a way to deal with AppEngine's full-text search limitations. Recently I stumbled across this and was a tad encouraged: http://www.kimchy.org/searchable-google-appengine-with-compass/ Any thoughts or comments on this as a

[google-appengine] Re: server error 500 update_indexes

2009-06-10 Thread chemuto
Hi Jeff, It seems to be working fine now, thanks. My app has between 80 and 90 indexes now. I might need to exceed 100... is that possible? Thanks, chemuto On 3 jun, 04:41, Jeff S (Google) j...@google.com wrote: Hi chemuto, I've reset the indicies quota for your app. How many indicies does

[google-appengine] Re: Full text search with whoosh, experiences?

2009-06-10 Thread Nick Johnson (Google)
Hi GenghisOne, As far as I know, the compass implementation also lacks a permanent store - it stores the index in local memory, which doesn't really work for App Engine. -Nick Johnson On Wed, Jun 10, 2009 at 2:38 PM, GenghisOne mdkach...@gmail.com wrote: Hi Nick, Like Andrew and a few

[google-appengine] Re: Python Vs Java in GAE

2009-06-10 Thread JoeM
Ashish, This is like asking us who you should marry. Both can do everything you need. Joe On Jun 9, 6:40 am, Ashish Agarwal agarwal.ashi...@gmail.com wrote: Hello Friends,   I want to know which language is best for creating application in GAE. I have both the options in my hand, I can go

[google-appengine] Re: 403 (quota) error but way under quota - problem continues

2009-06-10 Thread Nick Johnson (Google)
Hi Jim, I'm seeing what I can do about providing a short-term fix on our end to alleviate the problem you're experiencing, while we work on a long-term fix to eliminate the root cause. One of our engineers has offered to take a look at your app in particular, but they'd need the full source to

[google-appengine] alternative to self.redirect(users.create_login_url(self.request.uri))

2009-06-10 Thread thebrianschott
Can I change the Subject code so that when a user finishes signing in, the user is redirected to a different html page that is designed for the user's revised state of having signed in, or signed out? Or instead, can I use Django conditionals in the html like {{if user}}? My question about this

[google-appengine] Re: alternative to self.redirect(users.create_login_url(self.request.uri))

2009-06-10 Thread Nick Johnson (Google)
Hi Brian, On Wed, Jun 10, 2009 at 5:54 PM, thebrianschott schott.br...@gmail.comwrote: Can I change the Subject code so that when a user finishes signing in, the user is redirected to a different html page that is designed for the user's revised state of having signed in, or signed out?

[google-appengine] Re: alternative to self.redirect(users.create_login_url(self.request.uri))

2009-06-10 Thread Nick Johnson (Google)
Hi Brian, The URL you supply needs to be absolute (' http://mysite.com/choose_user.html'), not relative ('choose_user.html' or '/choose_user.html'). You may find the self.request.host and self.request.host_uri members helpful in constructing an absolute url from a relative one without hardcoding

[google-appengine] Re: alternative to self.redirect(users.create_login_url(self.request.uri))

2009-06-10 Thread thebrianschott
Nick, I am not getting much progress with the absolute url. When I use users.create_login_url('http://localhost:8084/choose_name.html') I still get the error message 404. My Log entry looks like the following. INFO 2009-06-10 17:53:29,764 main.py] skillName_id splash INFO 2009-06-10

[google-appengine] Re: alternative to self.redirect(users.create_login_url(self.request.uri))

2009-06-10 Thread Nick Johnson (Google)
Hi Brian, Have you defined a handler or static file directive for /choose_name.html? It looks like you haven't. Note that the parameter is a URL - not the name of a template. -Nick Johnson On Wed, Jun 10, 2009 at 7:03 PM, thebrianschott schott.br...@gmail.comwrote: Nick, I am not getting

[google-appengine] Re: Knowing which app belong to who

2009-06-10 Thread Thomas Wiradikusuma
unless, of course, the app name is your own username. the first time i registered for GAE, i secured my username :) On Jun 10, 11:33 am, pranny pra...@gmail.com wrote: Because of unknown reasons, the app name can not be the name of any gmail user. So, say someone has an email like

[google-appengine] Re: alternative to self.redirect(users.create_login_url(self.request.uri))

2009-06-10 Thread Sergey Klevtsov
Most probably your handler is not for http://localhost:8084/choose_name.html, but for http://localhost:8084/choose_name instead On Jun 10, 10:03 pm, thebrianschott schott.br...@gmail.com wrote: Nick, I am not getting much progress with the absolute url. When I use

[google-appengine] Re: alternative to self.redirect(users.create_login_url(self.request.uri))

2009-06-10 Thread thebrianschott
Sergey and Nick, You are both correct. Thanks very much. Let me see if I can build on that. Brian --~--~-~--~~~---~--~~ 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: Python Vs Java in GAE

2009-06-10 Thread Nash-t
Go ahead and fool around with sexy Python but Java is the one you'll bring home to meet Mom. On Jun 10, 8:46 am, JoeM joe.mansig...@gmail.com wrote: Ashish, This is like asking us who you should marry.  Both can do everything you need. Joe On Jun 9, 6:40 am, Ashish Agarwal

[google-appengine] Re: Python Vs Java in GAE

2009-06-10 Thread Benjamin Sautner
that explains why i only do .net when i travel. On Wed, Jun 10, 2009 at 3:32 PM, Nash-t timna...@gmail.com wrote: Go ahead and fool around with sexy Python but Java is the one you'll bring home to meet Mom. On Jun 10, 8:46 am, JoeM joe.mansig...@gmail.com wrote: Ashish, This is like

[google-appengine] Re: Python Vs Java in GAE

2009-06-10 Thread Peter Recore
I agree with the others that this is a decision we can't make for you. Here are some factors that you might think about when contemplating using each language - What web framework do you want to use? What libraries or third party code will you need to integrate with, and does that library exist

[google-appengine] Re: subversion setup

2009-06-10 Thread thebrianschott
I have not received any response on this issue. Does anyone have a clue, please? On Jun 7, 8:55 am, thebrianschott schott.br...@gmail.com wrote: When I try to get my files from the svn system, it looks like everything is fine until I try to look at the files: there are no files in the

[google-appengine] DB design best practices

2009-06-10 Thread n8gray
Hi everybody, I'm about to start working on an AppEngine backend for an iPhone game I'm developing. It's a simple board game, with 2-4 players who each take turns making plays. Originally I had planned to set up a LAMP server for my project, but AE has changed my plans (for the better!). I've

[google-appengine] Re: Throwing IO exception while deploying on google app engine

2009-06-10 Thread ming
Try to deploy in command-line. It works. Are you using windows 7 OS? Ming On Apr 23, 9:36 pm, Felipe maschi...@gmail.com wrote: I have the same problem, but this solution not resolve it. Have you another ideia? On 15 abr, 08:59, shiv s3s...@gmail.com wrote: This problem is resolved now.

[google-appengine] Re: the GAE's error with JDO at Persistence.

2009-06-10 Thread Ashurei
I'm using the Google Plugin for Eclipse, today i encountered a similar problem and solved it. opened the debug-level log, if you find the following text, remove the gae library and re-add it. DEBUG [org.datanucleus.util.Log4JLogger.debug(Log4JLogger.java:58)] Class

[google-appengine] Monitoring Server on GAE?

2009-06-10 Thread shlomo
It seems to me that GAE is perfectly suited to hosting an IT- infrastructure monitoring server, for example to monitor my in-the- cloud services and alert me when something goes wrong. I know Hyperic has a tool to monitor GAE Apps - but I am interested in the reverse: a GAE-based service that

[google-appengine] Re: SMS Verfication Troubles

2009-06-10 Thread Knight Samar
Hi, I am facing the same problem too. I have posted the SMS Issue form some 3 times, but still there hasn't been any reply or action. I have tried using my number(BSNL from India) and also my friends number (Bharti Airtel from India) and though both have been listed as supported carriers, it

[google-appengine] Monitoring Server on GAE?

2009-06-10 Thread shlomo
GAE seems very well suited to hosting a monitoring server which collects monitoring events from my hosted (elsewhere) applications and presents GUI reports, send alert emails, etc. I'm aware of the Hyperic product that monitors GAE apps, but I'm looking for the opposite: something that runs on

[google-appengine] Unable to Run the Development Web Server

2009-06-10 Thread bryanda
I have installed at C:\Program Files\Google\google_appengine and C: \Python26 I follow the steps at http://code.google.com/appengine/docs/python/tools/devserver.html I created helloworld folder at C:\Program Files\Google \google_appengine\helloworld and inside the folder there are two files

[google-appengine] Re: Python Vs Java in GAE

2009-06-10 Thread Jamie
To me, it looks like the Python implementation came first (and comes first) and is more mature than the Java implementation (I keep seeing messages in the Google App Engine Java Group about how some feature is support in Python, why isn't it supported in Java). Jamie

[google-appengine] Re: ??? Over Quota ???

2009-06-10 Thread Jeff S (Google)
Hi Sebastian, After looking into this issue, it seems it is likely related to the same issue as this thread: http://groups.google.com/group/google-appengine/browse_thread/thread/a3c230d2c658d2d3 As we asked with Jim's app, would you be willing to let us look at the full source code for your

[google-appengine] removing ACSID cookie expiration, ACSID-reset

2009-06-10 Thread John Tantalo
I grew tired of constantly logging into my app, so I figured out a way to remove the 24-hour expiration from the ACSID cookie GAE uses to keep your users logged in. Behold: # remove expiration from ACSID cookie, set ACSID-reset=1 if 'ACSID' in self.request.cookies and 'ACSID-reset' not

[google-appengine] Re: Accessing query results after PersistenceManager is closed

2009-06-10 Thread Jeff S (Google)
Hi Tim, It sounds like you need to detach the fetched entities so that they can still be accessed once the pm is closed. You can configure JDO to do this for you automatically using: prop key=datanucleus.DetachOnClosetrue/prop Could I see your jdo config file? You might need to detach each

[google-appengine] Re: Data Viewer Server Error?

2009-06-10 Thread Jeff S (Google)
Hi davekor, I've seen this crop up when one of the entities which is in the first page of results for the admin console does not satisfy the constraints set up in the entity's class. Could I see the class definitions for the entities that you are using? Thank you, Jeff On Tue, Jun 9, 2009 at

[google-appengine] Re: Unable to Run the Development Web Server

2009-06-10 Thread Wooble
err... python dev_appserver.py helloworld/ On Jun 10, 2:02 pm, bryanda bryanjin...@hotmail.com wrote: I have installed at C:\Program Files\Google\google_appengine and C: \Python26 I follow the steps athttp://code.google.com/appengine/docs/python/tools/devserver.html I created helloworld

[google-appengine] Re: Unable to Run the Development Web Server

2009-06-10 Thread dburns
Looks like the .py extension is associated with the text editor rather than python.exe. For me, the installation took care of that, but you can change it manually via through Windows. Alternatively, you can explicitly put python.exe in front of the command so that it runs the script rather than

[google-appengine] Re: Verify Your Account by SMS from Uruguay

2009-06-10 Thread jmpc
Hey Nick, i'm also in Uruguay. Can you help me with the activation? I've already requested that in http://code.google.com/appengine/kb/sms.html#error Thanks, Juan. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Verify Your Account by SMS from Uruguay

2009-06-10 Thread Samus_
same here, I've used the format shown at this page: http://www.howtocallabroad.com/uruguay/ both 598 9? ??? ??? and +598 9? ??? ??? none worked so please activate me manually, thank you. On Jun 10, 7:33 am, Nick Johnson (Google) nick.john...@google.com wrote: Hi, Your account should now be

[google-appengine] Re: DB design best practices

2009-06-10 Thread Tony
It's a really good question and perhaps someone with more db experience than me will write some kind of tutorial about planning your db structure for GAE... The biggest question I wished I'd asked myself before designing my app is: what sorts of models will I want to update together in

[google-appengine] google.appengine.tools.bulkloader.FileExistsError :data.csv:output file exists

2009-06-10 Thread DiveIntoGAE
I got this problem when uploading a csv file using bulkloader. How can i solve this problem? --~--~-~--~~~---~--~~ 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] A question about google app engine - thread id for performance profiling

2009-06-10 Thread Liang Han
A simple application, which is running at the google app engine, visits the datastore, and uses the urlfetch service as well.I want to add the 6 hooks into the code to get the timestamp when code is running at that checkpoint, thus the transactions performance profiling can be done by

[google-appengine] GAE KML support

2009-06-10 Thread buck
Is GAE able to return KML/KMZ MIME types? --~--~-~--~~~---~--~~ 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