[google-appengine] Re: How to get major appengine issues fixed?

2012-10-25 Thread Ernesto Oltra
Why don't you program the redirect manually in the meanwhile? It's easy to manage the router to change http to https with only one handler (in fact I do this to redirect my users from the X.appspot.com domain to the X.com one) On Thursday, October 25, 2012 9:50:16 AM UTC+2, Jan Killian wrote: >

[google-appengine] Re: Low hitting site experiencing denial of service attack - site opffline!

2012-08-09 Thread Ernesto Oltra
Have you tried CloudFlare? It's basically the same, a proxy to your app, and you don't have to make/admin it. It has a reputation system, and some others pretty good settings to deal with DOS attacks. BTW, I'm not affiliated at all with the company, I'm only other web dev. On Thursday, August 9

Re: [google-appengine] How can I block curl requests

2012-08-06 Thread Ernesto Oltra
In fact that server already exists, blackhole.webpagetest.org ensures it will never answer to anything. On Monday, August 6, 2012 9:53:46 PM UTC+2, Joshua Smith wrote: > > You could have some fun with them. Instead of returning an error, you > could redirect them someplace: > > Replace self.erro

[google-appengine] Re: All datastore calls failing

2012-04-09 Thread Ernesto Oltra
It's working again for me now. I can be prepared for some occasional timeouts, but this was sistematically across all my app. That's strange. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https:

[google-appengine] All datastore calls failing

2012-04-09 Thread Ernesto Oltra
Hi, Since 30 minutes more or less *all* my datastore calls (get, update put, query) are failing with either of this two: API error 5 (datastore_v3: TIMEOUT) Canceled: Deadline exceeded I've tried updating a new version and shutdown the instance, but no result; all calls (even a simple get b

Re: [google-appengine] Re: Hardcoded access to a Google Data service from App Engine-app

2012-01-09 Thread Ernesto Oltra
Hi, We have the same needs too, a single user controlling the list of downloads and receiving the essays. I'll send you the code offline. Ernesto -- 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-

Re: [google-appengine] Re: Hardcoded access to a Google Data service from App Engine-app

2012-01-08 Thread Ernesto Oltra
Hi, I didn't have any problems in sharing all the code, but it's in Go; contact me if you need it. I meant that the OAuth flow is: You prepare the authorization & redirect the user to Google ---> The user allows your app ---> Google gives you a temporary token ---> You interchange that token with

[google-appengine] Re: Hardcoded access to a Google Data service from App Engine-app

2012-01-08 Thread Ernesto Oltra
Hi, To me, the most stable & easy way has been OAuth2, requesting offline access and updating & saving the token automatically each time it expires. I save it in datastore, an entity with a special key ("master"), for easy of retrieval without queries. This design allows too for an admin sectio

[google-appengine] Re: Uploading a pdf saved on Blobstore to Google Docs

2012-01-07 Thread Ernesto Oltra
Hi, I've just finished today implementing a resumable uploader in my app, from blobstore to google docs. It's possible, it works and it's the best way. If you found it easier you can upload all the file at once with resumable upload too, but any little problem will make the entire upload fail (

Re: [google-appengine] Re: Watij on appengine

2011-12-15 Thread Ernesto Oltra
m here: > http://code.google.com/p/googleappengine/issues/detail?id=4784 > > On Wed, Dec 14, 2011 at 2:12 AM, Ernesto Oltra wrote: > >> I've used HtmlUnit before. It has a nice integration with the restricted >> environment of AppEngine. It works. >> >> -- &

[google-appengine] Re: Watij on appengine

2011-12-13 Thread Ernesto Oltra
I've used HtmlUnit before. It has a nice integration with the restricted environment of AppEngine. It works. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-a

[google-appengine] Re: What happened to the promised reliability improvement for email delivery?

2011-11-13 Thread Ernesto Oltra
Sendgrid.com ; built in top of Amazon SES, but it gives you a nice API through simple web requests, and it helps with statistics, bounces, etc. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https

[google-appengine] Re: Image upload

2011-11-12 Thread Ernesto Oltra
GWT is compiled to JavaScript: it can't do what JavaScript can't either. The trick of FileUpload is sending the form (and the file) in a hidden iframe; that way you haven't to reload the whole page. There is a good reason not to use FormPanel? Ikai has a blog post with some sample code using GW

[google-appengine] Re: Appengine and python error

2011-10-28 Thread Ernesto Oltra
I don't know if it's the problem or not, but you should use Python2.5, not v2.6. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/x96BQXWYQBUJ. To

[google-appengine] Re: pleas I need help

2011-10-21 Thread Ernesto Oltra
To start with, you have to install Python2.5, not 2.7. And then try to copy the full output, not only a line and we'll have more info to help you. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit ht

[google-appengine] Re: Activation

2011-10-18 Thread Ernesto Oltra
El formulario para pedirlo está aqui: https://appengine.google.com/waitlist/sms_issues -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/viqHibMwPr

Re: [google-appengine] Mail Question

2011-10-15 Thread Ernesto Oltra
as simple as a POST urlfetch to an URL using your secret key. 2011/10/15 Ernesto Oltra > For the "via ..." problem you need what they call "Whitelisting", so Silver > package is the minimum. That said, we have the Bronze package. They sign all > the emails you send,

Re: [google-appengine] Mail Question

2011-10-15 Thread Ernesto Oltra
wfully steep for something I don't > really understand whether I need! > > On Oct 15, 2011, at 5:29 AM, Ernesto Oltra wrote: > > You could always use Amazon SES instead of Appengine mail. > > If you don't feel like managing Amazon yourself, http://sendgrid.com/(built

[google-appengine] Re: Mail Question

2011-10-15 Thread Ernesto Oltra
You could always use Amazon SES instead of Appengine mail. If you don't feel like managing Amazon yourself, http://sendgrid.com/ (built in top of Amazon SES) has articles, and tutorials to configure your DKIM and all this things to avoid the "via ..." messages in gmail and the security alerts i

[google-appengine] Re: Need Python example of Template System

2011-10-03 Thread Ernesto Oltra
An example like the one in the Getting started guide? http://code.google.com/intl/en/appengine/docs/python/gettingstarted/ http://code.google.com/intl/en/appengine/docs/python/gettingstarted/templates.html -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Re: Setting file permissions

2011-09-26 Thread Ernesto Oltra
There is a reason to edit them? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/5v-qsVru8H0J. To post to this group, send email to google-appengine

[google-appengine] Re: Is the "Download the Google App Engine Documentation" link to the zip file broken?

2011-09-25 Thread Ernesto Oltra
It was reported a while ago, you can start the issue: http://code.google.com/p/googleappengine/issues/detail?id=5873&q=documentation%20404&colspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log -- You received this message because you are subscribed to the

Re: [google-appengine] Sqlite3 for backends

2011-09-14 Thread Ernesto Oltra
I've heard another legal use here in this group: Read a complex database that changes infrequently but can benefit from JOINs. Also sqlite3 is in C, so it's an extra effort to clean all this write-to-disc funcs in the code and test it. Post an issue and I'll start it, but it is a lot of work an

[google-appengine] GAE documentation can't be downloaded. 404 Error.

2011-09-12 Thread Ernesto Oltra
The link in this page: http://code.google.com/intl/en/appengine/downloads.html to the new documentation: http://googleappengine.googlecode.com/files/google-appengine-docs-20110912.zip throws a 404 error. -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Re: Sqlite3 for backends

2011-09-12 Thread Ernesto Oltra
Hi Andrin, The remote system is not writable, in case googlers add the module to python you could read the Sqlite3 files, but you couldn't write new data to them. Ernesto -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discu

Re: [google-appengine] Create an alias from M/S to HR app

2011-09-08 Thread Ernesto Oltra
t and historypoint-hr 2011/9/8 Johan Euphrosine > Did you fill a production issue ? If yes, can you point me to the > corresponding url ? > > Thanks in advance. > > On Thu, Sep 8, 2011 at 9:11 PM, Ernesto Oltra > wrote: > > Hi, > > I know the price change gets all the imp

[google-appengine] Create an alias from M/S to HR app

2011-09-08 Thread Ernesto Oltra
Hi, I know the price change gets all the importance right now, but I've sent the request 4 days ago to create an alias and still no answer at all from Google. How long does it take to create the alias? Ernesto -- You received this message because you are subscribed to the Google Groups "Goo

Re: [google-appengine] Re: Find out version of app in remote API shell?

2011-09-06 Thread Ernesto Oltra
Good point! Try this too (I won't have access to appengine until the night): from google.appengine.api import app_identity app_identity.get_application_id() 2011/9/6 Ronoaldo José de Lana Pereira > Oops, sorry, I misunderstood your question :) .. Ernesto's answer may be > the only one available

Re: [google-appengine] Re: Find out version of app in remote API shell?

2011-09-06 Thread Ernesto Oltra
Hi, You could try to iterate through the sys.argv list, and find the argument next to the "-s" one. Ernesto -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-

[google-appengine] Re: Hi How to Send Email Locally(Localhost)

2011-09-05 Thread Ernesto Oltra
Hi, Email can't be send automatically from your computer. You have three options here: 1) Use the flag --enable_sendmail and install & config sendmail in your computer. 2) Use --show_mail_body and check the mail contents in the console. 3) Use --smtp_host=smtp.gmail.com --smtp_use=myacco...@gm

[google-appengine] How can I request an alias for my application?

2011-09-03 Thread Ernesto Oltra
Hi, I have two questions: 1) The title of this thread: How can I request an alias for my application? 2) And how long does it take? Ernesto -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://

[google-appengine] Re: GWT application on GAE for a small shopping site ?

2011-08-31 Thread Ernesto Oltra
Using Paypal or Google Checkout seems like a good option; but they have feeds, check them before using one or the other. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/

[google-appengine] Re: Delete out ah_session entites?

2011-08-31 Thread Ernesto Oltra
Hi, There isn't an easy way of doing that right now. You can use taskqueue, cron, mapreduce, datastore admin, ... but it will cost you CPU time. Ernesto -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web v

[google-appengine] Re: App engine issue with special chars...

2011-08-26 Thread Ernesto Oltra
Maybe the problem is not the form, but the "see-it" page. Try this too: class MICLASE(webapp.RequestHandler): def get(self): self.response.headers['Content-Type'] = 'text/plain; charset=utf-8' p_descri=self.request.get('descri') self.response.out.write(p_descri) -- You received this m

Re: [google-appengine] Re: Disconnect the channels manually

2011-08-16 Thread Ernesto Oltra
the > post to /_ah/channel/ > disconnected is happening after some considerable delay say 2 to 3 > seconds. Whether this delay is normal? Is there any way that i can > speed up the post to /_ah/channel/disconnected ? > > Thanks > > -Hariprasath > > On Aug 10, 4:05 pm, E

Re: [google-appengine] Re: Disconnect the channels manually

2011-08-10 Thread Ernesto Oltra
Sorry, I don't know why I've said "yet" =D You have to call .close() on the socket javascript object 2011/8/10 Ernesto Oltra > I think your answer is yet written in the docs: > > http://code.google.com/intl/en/appengine/docs/python/channel/javascript.html >

[google-appengine] Re: Disconnect the channels manually

2011-08-10 Thread Ernesto Oltra
I think your answer is yet written in the docs: http://code.google.com/intl/en/appengine/docs/python/channel/javascript.html -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.

Re: [google-appengine] Persisting Lists

2011-08-03 Thread Ernesto Oltra
icient-implementation-of.html >> >> It's much more efficient than db.ListProperty(int) >> >> Cheers, >> -Andrin >> >> >> On Thu, Jul 28, 2011 at 6:17 PM, Pascal Voitot Dev < >> pascal.voitot@gmail.com> wrote: >> >>> goo

[google-appengine] Re: --enable_jar_splitting option of appcfg.sh

2011-07-28 Thread Ernesto Oltra
Limit is 150 MB for all files, and 10 Mb for each individual file. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/j8XPsT67XxAJ. To post to this gr

[google-appengine] Re: authentication for non web based python apps

2011-07-28 Thread Ernesto Oltra
Stephen said you could use HTTPS no matter what authentication system you have. And he suggested too hard-coding some random string in your client app and in the server; send it with all your request and check it in the server. As long as you keep that string secure, your system would be secur

Re: [google-appengine] Persisting Lists

2011-07-27 Thread Ernesto Oltra
I thought one thing and I said something completely differente -.-' I meant having a model, with the same key_id/key_name as the post and a list of users (say 4000/4500). When that super-start with 200.000 followers post something, run a taskqueue and save several models with the info. Then, for

Re: [google-appengine] Persisting Lists

2011-07-27 Thread Ernesto Oltra
Wow... so many users.. Perhaps asking the Google+ guys.. =) The only idea I have right now, is use taskqueues (or in the same request, it depends on latency) to create a «notification», referencing the post, and the users. Then, list the most recents notifications for the user. Delete the old o

[google-appengine] Re: SMS verification failure: already assoc

2011-07-27 Thread Ernesto Oltra
http://appengine.google.com/waitlist/sms_issues -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/OIl8VNmaoDkJ. To post to this group, send email to

Re: [google-appengine] Persisting Lists

2011-07-27 Thread Ernesto Oltra
And for followers, you could too shard the lists. You can have several entities, each with, about 100 results or so (or 1000, or 2000, I prefer 100 for easy of serializing/deserializing). All these would have the user as ancestor. When listing, take only one entity, deserializing its lists (only

Re: [google-appengine] Persisting Lists

2011-07-27 Thread Ernesto Oltra
A little correction, you could fetch more than 1000 results (the limit has been disposed time ago) but it's not recommendable have more than 200/300 results (more or less, for perfomance). I strongly recommend you seeing this video about ListProperty, fan-outs, etc (Google I/O 2009): http://www

[google-appengine] Re: GAE structure of python project

2011-07-27 Thread Ernesto Oltra
Oops, and if I need external libraries I usually create a third_party folder containing all the files. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengi

[google-appengine] Re: GAE structure of python project

2011-07-27 Thread Ernesto Oltra
Personally I wouldn't include third_party packages in the repository, but write a README file pointing the releases of what projects i need. It depends. My structure: static/images/... static/css/... static/js/... static/favicon.ico static/robots.txt templates/... conf/... < This is a Dja

[google-appengine] Re: Error 403: --- begin server output ---You do not have permission to modify this app

2011-07-25 Thread Ernesto Oltra
You should read Robert response more closely: ~/.appcfg_cookies Means if you're using Ubuntu, you should have a hidden file called ".appcfg_cookies" in your home directory (/home/[username]). Notice the point before the filename. -- You received this message because you are subscribed to the

Re: [google-appengine] Problems deploying with 1.5.2, not present when using 1.5.1

2011-07-21 Thread Ernesto Oltra
Sorry for asking so much, but each time I access *http://localhost:8080/*with the Go SDK, it throws this error: WARNING 2011-07-21 22:50:04,859 urlfetch_stub.py:108] No ssl package found. urlfetch will not be able to validate SSL certificates. INFO 2011-07-21 22:50:07,170 appengine_rpc.py:1

Re: [google-appengine] Problems deploying with 1.5.2, not present when using 1.5.1

2011-07-21 Thread Ernesto Oltra
Thanks, that fixes it. By the way, great work appengine team! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/_TH7a5JMm84J. To post to this group,

[google-appengine] Problems deploying with 1.5.2, not present when using 1.5.1

2011-07-21 Thread Ernesto Oltra
The Host: has changed from appengine.google.com to admin-console.prom.corp.google.com, and now I can't deploy with the new version of the SDK * * ** Host: admin-console.prom.corp.google.com Starting update of app: [MYAPPID_HERE], version: 2 Scanning files on local disk. 2011-07-21 23:47:42,2

Re: [google-appengine] Mailing alerts with appengine

2011-07-20 Thread Ernesto Oltra
Other option: Amazon SES: http://aws.amazon.com/ses/ Just out of curiosity, been from Google you can't use GMail infrastructure? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.goo

[google-appengine] Re: For deployment only does the sdk version matter?

2011-07-18 Thread Ernesto Oltra
As far as my knowledge goes, you upload the source code (allowing downloads of it later), and its compiled, precompiled or whatever (Python/Java/Go...) in their machines; so the only problem here is you might be using a feature that has change their behaviour since the version you locally tested

[google-appengine] Re: Some questions about AppEngine

2011-07-18 Thread Ernesto Oltra
1) & 2) For the entire application. Most of the time you won't worry about what instance is executing the code (except you are storing something in global variables, which is a really bad practique, use memcache instead) -- You received this message because you are subscribed to the Google Grou

Re: [google-appengine] Re: Server Error in Datastore Viewer

2011-07-16 Thread Ernesto Oltra
see my post a while back - same thing :( > > On Jul 16, 7:59 am, Ernesto Oltra wrote: > > I get a server error when viewing this entity: > https://appengine.google.com/datastore/edit?app_id=s~frosty-vamp&name... > > > > Server Error > > > > A server error

[google-appengine] Server Error in Datastore Viewer

2011-07-15 Thread Ernesto Oltra
I get a server error when viewing this entity: https://appengine.google.com/datastore/edit?app_id=s~frosty-vamp&namespace=&version_id=1.351805220293799874&key=ag1zfmZyb3N0eS12YW1wcg4LEgRQYWdlIgRob21lDA Server Error A server error has occurred. Return to Applications screen »

[google-appengine] Re: how to let the user sign-in as a different user

2011-07-14 Thread Ernesto Oltra
You don't have to delete any cookies from google; the GMail users DON'T log automatically, they have to give their permission; Google Accounts doesn't means GMail accounts, so @hotmail, @yahoo, etc. users can log to your application too. You should see: http://code.google.com/intl/en/appengi

[google-appengine] Re: Building Python 2.5.6 on Ubuntu Natty

2011-07-14 Thread Ernesto Oltra
There is a repository of old python releases for several ubuntu versions. It's prebuilt, so you don't have to worry about compiling and installing: http://kovshenin.com/archives/installing-python-2-5-on-ubuntu-linux-10-10/ -- You received this message because you are subscribed to the Google

[google-appengine] Re: ReferenceProperty vs Integer property

2011-07-04 Thread Ernesto Oltra
I'm already doing that. The only downside is ReferenceProperty stores the complete key path (app_id + parent + model + key_id + ...), while you will be storing only a part(key_id). If ancestor queries are not a problem for your app OR you can do them without needing the complete original key the

[google-appengine] Re: Error: Not Found,The requested URL / was not found on this server.

2011-06-23 Thread Ernesto Oltra
MYAPPID cannot be a valid app id. You have to register your own application: http://appengine.google.com/ and then change app.yaml or web.xml (Python/Java): http://code.google.com/intl/es-ES/appengine/docs/python/gettingstarted/uploading.html http://code.google.com/intl/es-ES/appengine/d

[google-appengine] Re: channel 404

2011-06-21 Thread Ernesto Oltra
Version 1.5.1 of AppEngine have Channel API presences: The Channel API can now provide user presence, this can be configured by adding channel_presence to the list of inbound services for your application. https://groups.google.com/forum/#!topic/google-appengine/7pGSYONFoLQ -- You received th

[google-appengine] Re: synchronized in the cloud?

2011-06-16 Thread Ernesto Oltra
Memcache and Datastore transactions could help a lot: http://code.google.com/intl/en/appengine/docs/java/datastore/transactions.html http://code.google.com/intl/en/appengine/docs/java/memcache/ -- You received this message because you are subscribed to the Google Groups "Google App Engine"

[google-appengine] Re: define inheritance relationship between kinds in GAE

2011-06-15 Thread Ernesto Oltra
Simply you have to put this on your model: class MyModel(db.Model): ... mydata = JSONProperty() ... And write mydata as you want, for example: mymodel.mydata = { 'hello': 'world', 'bye': 'world', } The same for reading: mymodel.mydata['hello'] # == 'world' mymodel.mydata['bye'] # ==

[google-appengine] Re: Google App engine PHP post back problem

2011-06-15 Thread Ernesto Oltra
Appengine doesn't support PHP -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/oUlOsCSxpT4J. To post to this group, send email to google-appengine@g

[google-appengine] Re: GAE-GWT login

2011-06-10 Thread Ernesto Oltra
Notice Google Accounts doesn't means **GMail** accounts, the Users API can handle hotmail, yahoo or whatever e-mail address they have. Generate a URL using this: UserService userService = UserServiceFactory.getUserService(); String url = userService.createLoginUrl("http://example.com/page-to-re

[google-appengine] Re: Newbie question. How to deal with real world app new versions?

2011-05-30 Thread Ernesto Oltra
- All versions share the same datastore data. - Copy some/all data locally and test everything you want, then you have the two options you have said. If you want to test something that can break your data, test it in other app. If you want only to test page X is working well in production too (

[google-appengine] Can we mix Python SDK and Go SDK?

2011-05-22 Thread Ernesto Oltra
I've noticed appcfg.py, dev_appserver.py, etc are the same in both SDKs. Can we install them in the same path for easy of use? So install python SDK in ~/google_appengine and then go sdk in ~/google_appengine overwriting the files repeated in order not to have two different appcfg.py's, etc when

Re: [google-appengine] Comment Box

2011-05-17 Thread Ernesto Oltra
http://developers.facebook.com/ This are the list of facebook plugins: http://developers.facebook.com/docs/plugins/ and specifically the Like button: http://developers.facebook.com/docs/reference/plugins/like/ -- You received this message because you are subscribed to the Google Groups

Re: [google-appengine] Comment Box

2011-05-17 Thread Ernesto Oltra
I think you should see Python introduction to App Engine: http://code.google.com/intl/en/appengine/docs/python/gettingstarted/ and specially the Using the Users service part: http://code.google.com/intl/en/appengine/docs/python/gettingstarted/usingusers.html -- You received this message bec

[google-appengine] Re: simulate datastore readonly(downtime) on development

2011-04-24 Thread Ernesto Oltra
I haven't tried this, but you could test if raising the Exceptions within hooks makes the same effect as a real outage: http://code.google.com/intl/en/appengine/articles/hooks.html -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post

[google-appengine] Re: App Engine DataStore - Supporting Multiple Apps Issue

2011-04-20 Thread Ernesto Oltra
Take a look at this too: http://code.google.com/intl/en/appengine/business/ -- 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 group, send email

[google-appengine] Re: Performing a "LIKE" query in GQL ??

2011-04-20 Thread Ernesto Oltra
Remember you can use inequality filters to match different suffixes at once: ["use", "useless", "useful"] will be matched by this query: db.GqlQuery('SELECT * FROM nowhere WHERE prop >= "use" and prop <= "use' + u'\u' + ' " ') because useL > use and useL < use[the bigger char in unicode]

[google-appengine] Re: Help a Newbie and earn Karma

2011-04-14 Thread Ernesto Oltra
I don't know if it's the problem because I have currently no time to test your code but check how many times that FOR inside a FOR inside a FOR executes =) (use logging.info('loop!') or something like that and check the code is not asking for a lot of memory). In production, and only in producti

[google-appengine] Re: Datastore Indexes Deleting

2011-03-30 Thread Ernesto Oltra
I'm not from google, but I think they will need your app id. On 30 mar, 03:45, jmoon wrote: > My application indexes have been deleting for the past 8 hours.  I have > tried update_index, vacuum_index and redeploying the app and nothing seems > to work.  The problem at this point is that a number

[google-appengine] Re: App Engine windows install: 'AppEngine' is not a valid short file name

2011-03-23 Thread Ernesto Oltra
You can simply download the zip version, aun unzip wherever you want appengine to be (C:/Program files/ for example). You don't need any more. On 22 mar, 00:08, Ryan wrote: > I was having issues with the datastore so I decided to update my > Appengine version to 1.4.2 from 1.4.0 > > Had this