[google-appengine] Re: Only 10 records can fetch via remote_api ?

2009-08-06 Thread Holger
They are fetched in packets of up to ten. If you want to download all entities of a kind use the following code: http://code.google.com/appengine/docs/python/tools/uploadingdata.html#Creating_Exporter_Classes If you do remote individually and need more than ten entities downloaded to your machin

[google-appengine] Re: Google Wave new line character

2009-08-06 Thread Andi Albrecht
On Fri, Aug 7, 2009 at 6:54 AM, Jason Salas wrote: > > hi andi, > > the num and num2 arguments for the add() method are the input taken by > the bot, if the user types in "?add num num2".  (i ripped the command > syntax  used by the grauni...@appspot.com bot.  actually...now that > you mention it,

[google-appengine] Re: My benchmarks say query is faster than get

2009-08-06 Thread Oliver Zheng
On Aug 6, 5:27 pm, Alkis Evlogimenos ('Αλκης Ευλογημένος) wrote: > You are doing multiple db.get calls while you do a single Query.fetch. But isn't the point of db.get for multiples a direct real-time (i.e. constant time) grab? Where as a query searches through an index first, and then does the

[google-appengine] Only 10 records can fetch via remote_api ?

2009-08-06 Thread Tom Wu
Only 10 records can fetch via remote_api ? 11+ record got error ! Regards Tom Wu --~--~-~--~~~---~--~~ 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@goog

[google-appengine] Re: Google Wave new line character

2009-08-06 Thread Jason Salas
hi andi, the num and num2 arguments for the add() method are the input taken by the bot, if the user types in "?add num num2". (i ripped the command syntax used by the grauni...@appspot.com bot. actually...now that you mention it, the only thing i could think of that would make it respond in t

[google-appengine] Re: Google Wave new line character

2009-08-06 Thread Andi Albrecht
On Fri, Aug 7, 2009 at 12:46 AM, Jason Salas wrote: > > now that i'm in the office and have my code handy, here's the routine i'm > using: > > def add(num,num2): >        sum = str(int(num) + int(num2)) >        return 'The sum of %s and %s is: %s' % (num,num2,sum) Given this code example, I thi

[google-appengine] Rest server: user-group access

2009-08-06 Thread epb
Hi I am using the app engine rest server module to access different instances of a datamodel on my GAE app. Login is required on the app but I would like the system to use instance-wise authentication so that only a specific set of users A (and not all users) has access to a specific datamodel in

[google-appengine] Re: dictionary displays problem

2009-08-06 Thread yuan ping wu
I found the solution,but in stiupd way~~ {% for key in text.items %} {% for e in key %} {{e}} {% endfor %} {%endfor%} put 1 more inner loop for looping though all elements of tuples ,any better way 2 do this, guys? Welcome 2 discuss 2009/8/5 yuan ping wu > in python.py: > values={'mydi

[google-appengine] so now there is SearchableModel, officially?

2009-08-06 Thread Kuber
In the python sdk 1.2.4 release note, i see this: "Enhancement to SearchableModel allowing multiple properties to be indexed." Yes, we've heard about it for several months. But have google ever mentioned this thing in any official documentation before it's "enhanced"? Looking forward to google's d

[google-appengine] Re: Impossible to create the Gmail account with the same name as your App Engine application

2009-08-06 Thread Emilien Klein
Hey Holger, Thanks for your reply... I must admit that this is not THE most needed functionality, but it is quite ironical that today they have released the new 1.2.4 version with improvements that don't really qualify in the "much more important issues in the roadmap" category that you are talki

[google-appengine] Re: Did the API for Model._toPb change recently?

2009-08-06 Thread Rafe
Has your modified version of SearchableModel overloaded Query._ToPb. You will need to update your application so that it can accept the additional parameter. As a catch all, you might like to have the signature end in *params, **kwds and pass those along to the superclass version of _ToPb. Th

[google-appengine] Re: About the latest release (1.2.4)

2009-08-06 Thread johntray
I'm with you. 1.2.4 is a big disappointment. On Aug 6, 9:38 pm, Emilien Klein wrote: > Is it just me or does it seem that this new release adds > functionalities that don't seem to be on the list of that many people? > > The 3 issues that are linked to > fromhttp://code.google.com/p/googleapp

[google-appengine] About the latest release (1.2.4)

2009-08-06 Thread Emilien Klein
Is it just me or does it seem that this new release adds functionalities that don't seem to be on the list of that many people? The 3 issues that are linked to from http://code.google.com/p/googleappengine/wiki/SdkReleaseNotes for release 1.2.4 were starred by respectively 2,1, and a whopping 5

[google-appengine] Re: Did the API for Model._toPb change recently?

2009-08-06 Thread Emilien Klein
Well, it seems that they have released a new version (1.2.4) of the SDK about 2 hours ago, that might be the source of your problem... Have a look at http://code.google.com/p/googleappengine/wiki/SdkReleaseNotes to see if something could be the reason of your errors... On 6 août, 19:49, Mahmoud

[google-appengine] Did the API for Model._toPb change recently?

2009-08-06 Thread Mahmoud
The search functionality in our app mysteriously started breaking today. We use a modified version of SearcheableModel. Here is the stack trace: results = SpontyUser.all().search(query).order('name').fetch (PAGE_SIZE+1) File "/base/python_lib/versions/1/google/appengine/ext/db/ __init__.py"

[google-appengine] Re: My benchmarks say query is faster than get

2009-08-06 Thread 'Αλκης Ευλογημένος
You are doing multiple db.get calls while you do a single Query.fetch. On Fri, Aug 7, 2009 at 2:00 AM, Oliver Zheng wrote: > > http://benchmaker.appspot.com/benchmark/bench/ > > See get 20 vs query 20. I must be doing something wrong here. The data > in the datastore is about 1000 objects create

[google-appengine] Re: Problem deploying demo application

2009-08-06 Thread Roberto Eguaglia
news: now it appears simply a blank page (on Firefox; on IE the 500 error still lives). The app is at http://hello-demo.appspot.com Please I really need your help. On 5 Ago, 12:00, "squalo1...@nuoto.it" wrote: > Hi everyone. > I'm new to Google App Engine and I'm using Eclipse 3.4 with the plugi

[google-appengine] My benchmarks say query is faster than get

2009-08-06 Thread Oliver Zheng
http://benchmaker.appspot.com/benchmark/bench/ See get 20 vs query 20. I must be doing something wrong here. The data in the datastore is about 1000 objects created with its ID autogenerated. There are no other objects, so these objects have sequentially incremental IDs. What is wrong with my co

[google-appengine] Re: Impossible to create the Gmail account with the same name as your App Engine application

2009-08-06 Thread Holger
Makes sense, but just wouldn't mean that you can send 'owner' email from such a retrieved account. The letter would mean additionally appengine internal administration needs to be changed to work with more than one 'owner mail'. There are much more important issues in the roadmap. So I fear it w

[google-appengine] Style question: Should urls have a slash at the end

2009-08-06 Thread Emilien Klein
Hi, This is a question purely about style. Should the urls of our App Engine applications end with a slash or not? In one of my first applications, I had set up a 301 redirect if you queried the page without a trailing slash to the page with the slash. Example: http://reply.appspot.com/about ->

[google-appengine] Re: Google Wave new line character

2009-08-06 Thread Jason Salas
now that i'm in the office and have my code handy, here's the routine i'm using: def add(num,num2): sum = str(int(num) + int(num2)) return 'The sum of %s and %s is: %s' % (num,num2,sum) the output, as printed within a new blip and within my GAE logs, is: "The sum of 5 and 6\n is

[google-appengine] Impossible to create the Gmail account with the same name as your App Engine application

2009-08-06 Thread Emilien Klein
I've created an issue for this, but I'd like to know if other people are affected/interested by this... This is the link: http://code.google.com/p/googleappengine/issues/detail?id=1953 This is the text: >From http://code.google.com/p/googleappengine/issues/detail?id=479#c8 I understood that it is

[google-appengine] Re: why there are Datastore API and Memcache usage for a blank django site?

2009-08-06 Thread Holger
I fear you have to do a decision either the comfortable Django framework or zero quota. After deletion of registration, admin and so on there may remain the automatic session management, the automatic handling of zip packages (Django alone are several hundred files) and more. As already describe

[google-appengine] Re: Free Quotas: App Engine vs. App Engine for Domains

2009-08-06 Thread Hans
On Aug 6, 12:26 pm, Barry Hunter wrote: > Its basically two different urls to the same actual application - uses > the same resources. > Thanks - that makes sense to me. The page/slideshow at: http://www.google.com/support/a/bin/answer.py?hl=en&answer=91077 helped my understanding as well. Ha

[google-appengine] Re: How does Query.__iter__ fetch objects?

2009-08-06 Thread Oliver Zheng
Thanks Nick. That's exactly what I needed. I'll estimate the number of entries based on this number 20. Cheers, Oliver On Aug 6, 1:53 pm, "Nick Johnson (Google)" wrote: > Hi Oliver, > > The iterator works by fetching batches of 20* entities at a time from > a single query (it doesn't re-execute

[google-appengine] Re: How does Query.__iter__ fetch objects?

2009-08-06 Thread Nick Johnson (Google)
Hi Oliver, The iterator works by fetching batches of 20* entities at a time from a single query (it doesn't re-execute the query each time). If you always want to return all the results, you should definitely use .fetch(1000), though - it's faster than fetching in batches. -Nick Johnson On Thu,

[google-appengine] Re: Google Wave new line character

2009-08-06 Thread Jason Salas
I have this problem, too...I'm working in Python and doing string interpolation and the outputted content that gets printed in a new blip for some reason has a newline. I can't figure out why. On 8/6/09, jamz2010 wrote: > > Hi all, > > I am having some issues with reading the last blip from my w

[google-appengine] Re: X-AppEngine-Resource-Usage Header

2009-08-06 Thread bFlood
wow, thats great news. I was looking at the numbers earlier and they didnt seem to be adding up from a pricing perspective. dividing by 1000 looks a lot better! cheers brian On Aug 6, 3:06 pm, "Nick Johnson (Google)" wrote: > Just a quick thing my colleagues pointed out: Note that the first >

[google-appengine] Re: GQL "IS NOT NULL" and "LIKE" queries

2009-08-06 Thread Hrishikesh Bakshi
Basic MySQL Like functionality using Java Step 1: Fetch the whole table Step 2: For each row: query= query.toLowerCase(); temp = dbname.getTablename().toLowercase if(temp.contains(query)){ //do stuff... } Hope it helps.. On Thu, Aug 6, 2009 at 3:21 PM, Barry Hunter wrote: > > You cant do ful

[google-appengine] How does Query.__iter__ fetch objects?

2009-08-06 Thread Oliver Zheng
The docs suggest that if the limit of a fetch operation is unknown, the Query should be used as an iterator. But how does it accomplish that? Does it do an index search and db.get() for each iteration? If the limit is unknown, aren't I better off with fetch(1000) since there is only 1 db.get()? T

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

2009-08-06 Thread djidjadji
the yaml file must be next to the python files and not marked as static in app.yaml How do you want to let the client upload the yaml file. If that is with an html form then you must store the file in the datastore 2009/8/6 Tim Hoffman : > > You can define you own yaml file. and then read it dir

[google-appengine] Re: Free Quotas: App Engine vs. App Engine for Domains

2009-08-06 Thread Barry Hunter
Its basically two different urls to the same actual application - uses the same resources. 2009/8/6 Hans : > > Is the free resource quota for App Engine for Domains the same as the > free quota I get as an individual (not domain)? > > I probably missed where in the docs this was stated, so a po

[google-appengine] Re: GQL "IS NOT NULL" and "LIKE" queries

2009-08-06 Thread Barry Hunter
You cant do full 'like' capabilities, but can do basic 'startswith' using the trick mentiond here: http://code.google.com/appengine/docs/python/datastore/queriesandindexes.html#Introducing_Indexes Also have a look around for the various 'full text' search implementations. For 'NOT' you do have !

[google-appengine] Re: X-AppEngine-Resource-Usage Header

2009-08-06 Thread Nick Johnson (Google)
Just a quick thing my colleagues pointed out: Note that the first header is an estimate per _thousand_ requests, not per request. :) -Nick On Thu, Aug 6, 2009 at 2:25 PM, bFlood wrote: > > hi all > > I just noticed these 2 headers showing up on GAE responses, i'm not > sure how long they've been

[google-appengine] Struts 2 action as welcome-file

2009-08-06 Thread benmccann
Hi, I'd like to set a Struts 2 action as my homepage. I tried doing this with the welcome-file tag in web.xml, but couldn't get it to work. The best I could do was point welcome-file to an html page that redirected to the action. However, this is quite different than what I actually want. If th

[google-appengine] IP ranges

2009-08-06 Thread Danny
I am wondering if GAE allows their IP ranges to be listed publicly. If so, what are they? If not actual ranges then perhaps how many IP addresses, broken down into classes (A/B/C)? Thanks! Danny --~--~-~--~~~---~--~~ You received this message because you are subsc

[google-appengine] Re: Anything better than naked domains?

2009-08-06 Thread Andrew M
Daniel: I am in a similar situation and came up with a workaround. The only gotcha is that the primary domain has to be on "www" and not the naked domain. I just setup a non-AppEngine server that redirects all non-www requests to the same URL but with "www." added on the front. The server is set

[google-appengine] Error uploading app to GAE

2009-08-06 Thread Kashif
Here is the error I am receiving - any ideas what's wrong and possible fixes? G:\Program Files (x86)\Google\google_appengine>appcfg.py update \gae \HoityToity\ Scanning files on local disk. Initiating update. 2009-08-05 18:11:40,773 ERROR appcfg.py:1272 An unexpected error occurred. Aborting. Tra

[google-appengine] Free Quotas: App Engine vs. App Engine for Domains

2009-08-06 Thread Hans
Is the free resource quota for App Engine for Domains the same as the free quota I get as an individual (not domain)? I probably missed where in the docs this was stated, so a pointer is much appreciated. Thanks, Hans --~--~-~--~~~---~--~~ You received this messa

[google-appengine] Google Wave new line character

2009-08-06 Thread jamz2010
Hi all, I am having some issues with reading the last blip from my wavelet in my robot. I have used the line String sLastBlip = e.getBlip().getDocument().getText(); to get me the last blip that was added to the wave but it appears to be automatically adding a new line to the end of the wave. I

[google-appengine] does URL fetch support partial content request through "Accept-Ranges" and "Accept-Length" headers?

2009-08-06 Thread GhostHeaven
1MB is really not enough in some cases. --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Have to verify AGAIN

2009-08-06 Thread vincentddn
try this link https://appengine.google.com/permissions/smsverify?phone_number=%2B{phonenumber} replace {phonenumber} with your phone number On Jul 24, 10:48 am, "Jeff S (Google)" wrote: > Hi Japp, > > Would you mind filling out the following form to request non-SMS activation? > > http://appen

[google-appengine] why there are Datastore API and Memcache usage for a blank django site?

2009-08-06 Thread Chao Xu
Hi, I used Django GAE patch and deleted registration module, admin module, site, webdesign, flatpages and datastore index on GAE. Pretty much just left a simple page showing "hello". But I found every time loading this simple page, it costs about 3 request, 5 datastore API and 7 Memcache quota.

[google-appengine] Issues in Create an aplication

2009-08-06 Thread Koba
Nick I created some aplications in the site, but it doesn´t apear anywhere. Could you please help me ? Thanks Koba --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, s

[google-appengine] "Content is not allowed in prolog" when running JDO Enhancement

2009-08-06 Thread Sebastian Sylvan
I've tried to let Eclipse automatically enhance my classes, but that failed, running it manually produces the following error: DataNucleus Enhancer (version 1.1.4) : Enhancement of classes 05-Aug-2009 23:07:21 org.datanucleus.metadata.xml.MetaDataParser parseMetaDataSt ream SEVERE: Parser error w

[google-appengine] Basic Event Tracking Question

2009-08-06 Thread Markitecht
I am writing a dirt-simple tracking API. For the sake of explanation, i will over-simplify my question even further. I have an endpoint that accepts one item of string metadata, and saves a new instance of an Interaction object. (the interaction object also saves the user and the date created)

[google-appengine] GQL "IS NOT NULL" and "LIKE" queries

2009-08-06 Thread ssprauer
I looked in the GQL reference but it looks like it s not possible to execute "IS NOT NULL" and "LIKE" queries... If anybody had a how-to or a workaround, that would be most welcomed :) Tanks, Steve --~--~-~--~~~---~--~~ You received this message because you are s

[google-appengine] Storing Data using Google App Engine

2009-08-06 Thread Anna
Hello, http://code.google.com/appengine/docs/java/datastore/overview.html After reviewing this document I am a little confused on how google stores data. In the example is the Employee object saved in the form of a flat file? If anyone could explain I would appreciate it. Thanks Anna --~--~-

[google-appengine] GQL "IS NOT NULL" and "LIKE" queries

2009-08-06 Thread ssprauer
I am looking forward to code some GQL queries that would retrieve data like SQL "IS NOT NULL" and "LIKE" queries. I would be very grateful to see an example... Cheers, Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] JDO relationships and PrimaryKey issue

2009-08-06 Thread Premier
Hello, i'm tring Java on GAE and using JDO to map my beans. I attended at http://code.google.com/appengine/docs/java/datastore/relationships.html#Owned_One_to_Many_Relationships to set beans relationships, but, always occurs follow error Error in meta-data for com.bean.Town.id: Cannot have a java

[google-appengine] List of logged in users

2009-08-06 Thread Sam
Hello, Is it possible to get a list of users currently logged into a specific application? This would assume that (a) the user has been authenticated to the application and (b) that the application window/ tab is still open. I'm writing an app where one user invites a second user to play a card

[google-appengine] Model entities no more accessible

2009-08-06 Thread dom.eav
Hello Group, I spent a few days porting a web app to GAE using app-engine-patch 1.0.2.3 (last stable version) and the last SDK. Everything went fine, and the app went live yesterday. Today, as I was doing some template modifications, I noticed the following things: - one of my queries on a mode

[google-appengine] Error deploying sample app

2009-08-06 Thread Kashif
All, I am running into the following error when running appcfg.py update command - any guidance will be appreciated G:\GAE>"g:\Program Files (x86)\Google\google_appengine\appcfg.py" update helloworld/ Scanning files on local disk. Initiating update. Email: x...@gmail.com Password for x...@gmail.c

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread abridgedEdition
Hey Nick, Thanks for your help. I'm actually running a mac, but looks like the default FileVault FS is case-insensitive. Thanks again On Aug 6, 12:39 pm, "Nick Johnson (Google)" wrote: > Hi abridgedEdition, > > We have a diagnosis! Your handler starts with a lower-case 's' in > app.yaml, but

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread Nick Johnson (Google)
Hi abridgedEdition, We have a diagnosis! Your handler starts with a lower-case 's' in app.yaml, but the actual filename starts with an uppercase 'S'. This works in the SDK because you're (presumably) using Windows, which is case-insensitive. The deployment environment is case-sensitive, however.

[google-appengine] Re: Deleting indices and (possibly) a new index messing up the results from older indices

2009-08-06 Thread Natalie Gordon
My app id is mylenguajero. Thanks. On Aug 6, 11:12 am, "Nick Johnson (Google)" wrote: > Hi again Natalie, > > Can you please let us know what the app ID of your app is? > > -Nick Johnson > > On Thu, Aug 6, 2009 at 4:19 PM, Nick Johnson > > > > (Google) wrote: > > Hi Natalie, > > > On Thu, Aug 6

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread Nick Johnson (Google)
Hi again abridgedEdition, Are you able to share the handler code you're using with us? Feel free to email it to me if you're not happy revealing it on a public forum. -Nick Johnson On Thu, Aug 6, 2009 at 6:01 PM, abridgedEdition wrote: > > Hey Nick, > > Thanks for your quick replies.  See above

[google-appengine] No Adsense mobile support for Google App Engine?

2009-08-06 Thread Neo42
Does Adsense for mobile not support google app engine? It looks like, for the worst case, I could just use standard google ads. Thanks, Neo42 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group

[google-appengine] Re: Datastore problem?

2009-08-06 Thread Jesse Grosjean
The problem seems to be fixed now, for me anyway. --~--~-~--~~~---~--~~ 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 t

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread abridgedEdition
Hey Nick, Thanks for your quick replies. See above; curl's failing too. On Aug 6, 11:48 am, "Nick Johnson (Google)" wrote: > Have you tried identical POSTs from something like wget or curl? When > you say you have a "custom" client, how custom exactly? > > -Nick Johnson > > On Thu, Aug 6, 2009

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread Nick Johnson (Google)
Have you tried identical POSTs from something like wget or curl? When you say you have a "custom" client, how custom exactly? -Nick Johnson On Thu, Aug 6, 2009 at 5:42 PM, abridgedEdition wrote: > > Yes.  Forgot to mention that it works great in the development > server. > > Also, the get reques

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread abridgedEdition
I'm also getting fails from curl, so it's not just the custom client. Behold: curl -d "shortname=staples&protocol=darkdc&description=Staples%3B+the +most+excellent+library+anywhere %21&identity=" http://pipem0ther.appspot.com/api/moresvc Whereas pointing that at

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread abridgedEdition
Yes. Forgot to mention that it works great in the development server. Also, the get requests from the custom client work both in development and production. But POSTs (and PUTs for that matter) don't seem to work in production. On Aug 6, 11:39 am, "Nick Johnson (Google)" wrote: > Hi, > > Have

[google-appengine] Re: client gets 500 error; nothing in logs

2009-08-06 Thread Nick Johnson (Google)
Hi, Have you checked that your app.yaml (or web.xml, in the case of Java) is valid? This sort of error often occurs if you have a handler set up in app.yaml that points to a Python handler script that doesn't exist or wasn't uploaded. Also, have you tried this on the Development server? Does it

[google-appengine] client gets 500 error; nothing in logs

2009-08-06 Thread abridgedEdition
Hey AppEngine, I've got a custom client making POST requests that's getting back 500 errors. I do see it in the logs if I filter down to "Requests only" mode, but nothing shows up for the debug/info/warning/error logs. No tracebacks, nothing. I suspect somehow I've malformed the post request,

[google-appengine] Re: Datastore problem?

2009-08-06 Thread Hrishikesh Bakshi
I am having the same issue intermittently from the last hour. Not on all tables though. On Thu, Aug 6, 2009 at 12:06 PM, Jesse Grosjean wrote: > > I'm seeing lots of Datastore timeouts right now that I don't ushually > see on www.writeroom.ws. Is there a known issue with the datastore > now? > >

[google-appengine] Re: Deleting indices and (possibly) a new index messing up the results from older indices

2009-08-06 Thread Nick Johnson (Google)
Hi again Natalie, Can you please let us know what the app ID of your app is? -Nick Johnson On Thu, Aug 6, 2009 at 4:19 PM, Nick Johnson (Google) wrote: > Hi Natalie, > > On Thu, Aug 6, 2009 at 4:05 PM, Natalie Gordon > wrote: >> >> 1. How do I delete indexes? I removed all but 3 indices for a

[google-appengine] Datastore problem?

2009-08-06 Thread Jesse Grosjean
I'm seeing lots of Datastore timeouts right now that I don't ushually see on www.writeroom.ws. Is there a known issue with the datastore now? Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine"

[google-appengine] Re: 404 Forb

2009-08-06 Thread Hrishikesh Bakshi
Yes Python 2.6 should be uninstalled for App Engine to work. Install Python 2.5. And these Make changes to PythonPath as well.. 2009/8/6 dhivya mylsamy > I dont think python 2.6 is supported by google appengine.only python 2.5 is > supported as far as i know.. > > On 8/5/09, 陈年高 wrote: >> >> my

[google-appengine] Re: 404 Forb

2009-08-06 Thread dhivya mylsamy
I dont think python 2.6 is supported by google appengine.only python 2.5 is supported as far as i know.. On 8/5/09, 陈年高 wrote: > > my python 2.6 can not run > ^_^o(∩_∩)o...^_^ :-) > > > > :-)音问久疏,唯愿一切康适。 > > > > --~--~-~--~~~---~--~

[google-appengine] Re: Deleting indices and (possibly) a new index messing up the results from older indices

2009-08-06 Thread Nick Johnson (Google)
Hi Natalie, On Thu, Aug 6, 2009 at 4:05 PM, Natalie Gordon wrote: > > 1. How do I delete indexes? I removed all but 3 indices for a class in > the index.yaml file. I uploaded this last night but there are still 9 > indices shown as serving in the dashboard (none are marked for > deletion). You n

[google-appengine] Re: Deleting indices and (possibly) a new index messing up the results from older indices

2009-08-06 Thread Natalie Gordon
I wasn't clear in what the problem was with 2. Yesterday I had 30 emails in my inbox and 30 in my sent mail. Today I only have the emails appearing that have been sent since my last app upload. (So like 3). All users on the site are having the same issue. Thanks. On Aug 6, 10:05 am, Natalie Gor

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

2009-08-06 Thread Natalie Gordon
Thanks for the suggestions. Different subdomains are treated like different websites in SEO. So if we get a lot of links to http://blog.abc.com then it helps out our blog but not directly our site SEO (it helps indirectly b/c the blog links to the site). I believe the 302 redirect idea will give

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

2009-08-06 Thread Tony
If you're feeling adventurous, you could always run Wordpress on App Engine :P (http://blog.caucho.com/?p=196) Or port to an App Engine-compatible blog engine (http:// bloog.billkatz.com/) On Aug 6, 11:00 am, Tony wrote: > I'm not an SEOer, but would it be sufficient to define a /blog handler >

[google-appengine] Deleting indices and (possibly) a new index messing up the results from older indices

2009-08-06 Thread Natalie Gordon
1. How do I delete indexes? I removed all but 3 indices for a class in the index.yaml file. I uploaded this last night but there are still 9 indices shown as serving in the dashboard (none are marked for deletion). 2. The following behaviour started occuring last night (we've been live for a coup

[google-appengine] Re: Appengine down..?

2009-08-06 Thread Jon McAlister
Should be all clear now. On Thu, Aug 6, 2009 at 7:31 AM, Nick Johnson (Google) wrote: > > Hi Dieter, > > We're currently seeing some issues with users serving off custom > domains. We're working on resolving it right now. > > -Nick Johnson > > On Thu, Aug 6, 2009 at 3:30 PM, Dieter > Krachtus wro

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

2009-08-06 Thread Tony
I'm not an SEOer, but would it be sufficient to define a /blog handler in app.yml, and have it point to a simple script that returns a 302 redirect to blog.domain.com? On Aug 5, 8:33 am, J wrote: > Could you elaborate a bit on "for SEO reasons"? Do you want the blog > keywords to help elevate yo

[google-appengine] Re: Appengine down..?

2009-08-06 Thread Dieter Krachtus
Works again. Thanks. I was mainly writing to get downtime info in the dashboard. I guess there will always be down times. Something like a weekly/monthly concise appengine report by email would be nice. On Aug 6, 4:31 pm, "Nick Johnson (Google)" wrote: > Hi Dieter, > > We're currently seeing so

[google-appengine] Re: My app is getting filtered by "sorry.google.com"!

2009-08-06 Thread Jon McAlister
Should be all clear now. On Thu, Aug 6, 2009 at 7:22 AM, Jon McAlister wrote: > We're having issues serving most custom domain traffic right now, and > are serving up these sorry pages. appspot.com appears to be > unaffected. Investigating. > > On Thu, Aug 6, 2009 at 7:17 AM, Nick Johnson > (Goog

[google-appengine] Re: Google blocked My App Engine App for My IP address!!

2009-08-06 Thread Jon McAlister
Should be all clear now. On Thu, Aug 6, 2009 at 7:47 AM, Hrishikesh Bakshi wrote: > Seems to be working now.. > > http://rumaps.rutgers.edu > > On Thu, Aug 6, 2009 at 10:26 AM, Jon McAlister wrote: >> >> We're having issues serving most custom domain traffic right now, and >> are serving up thes

[google-appengine] Re: Getting the We're sorry... page

2009-08-06 Thread Jon McAlister
Should be all clear now. On Thu, Aug 6, 2009 at 7:22 AM, Jon McAlister wrote: > We're having issues serving most custom domain traffic right now, and > are serving up these sorry pages. appspot.com appears to be > unaffected. Investigating. > > On Thu, Aug 6, 2009 at 7:13 AM, Frank wrote: >> >> M

[google-appengine] Re: Google Error: "...your query looks similar to automated requests from a computer virus or spyware application."

2009-08-06 Thread Jon McAlister
Should be all clear now. On Thu, Aug 6, 2009 at 7:31 AM, Nick Johnson (Google) wrote: > > We're currently seeing some issues with users serving off custom > domains. We're working on resolving it right now. > > -Nick Johnson > > On Thu, Aug 6, 2009 at 3:26 PM, DJB wrote: >> >> We host our Google

[google-appengine] Re: App Engine Terms & Conditions Atrocious?

2009-08-06 Thread Tony
I am not a lawyer, and I don't work for Google, so I'm not saying your concerns are illegitimate, but that clause seems like legal boilerplate to me - as serving your content could conceivably be interpreted as publishing, translating, performing, displaying, distributing, etc. by the morass of gl

[google-appengine] Re: Google blocked My App Engine App for My IP address!!

2009-08-06 Thread Hrishikesh Bakshi
Seems to be working now.. http://rumaps.rutgers.edu On Thu, Aug 6, 2009 at 10:26 AM, Jon McAlister wrote: > > We're having issues serving most custom domain traffic right now, and > are serving up these sorry pages. appspot.com appears to be > unaffected. Investigating. > > On Thu, Aug 6, 2009

[google-appengine] Re: App Engine Terms & Conditions Atrocious?

2009-08-06 Thread Nick Johnson (Google)
Hi webpaage, I'm not a lawyer, so please treat my assessment as that of a lay-person's. If you're concerned about the Terms of Service, your best option is to consult a lawyer and ask for clarification on any points you're unsure about. On Wed, Aug 5, 2009 at 8:53 AM, webpaage wrote: > > I am qu

[google-appengine] Need Index Quota Reset

2009-08-06 Thread Devel63
Need Index Quota rest on lifehints-beta. 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 from t

[google-appengine] Re: App Engine Terms & Conditions Atrocious?

2009-08-06 Thread Tudor Constantin
Tony, if that would be so, they would ask the right to EXECUTE/INTERPRET or something similar your code, not to " give Google a worldwide, royalty-free, and non-exclusive license to reproduce, adapt, modify, translate, PUBLISH, publicly perform, publicly DISPLAY and distribute such Content for the

[google-appengine] Re: Google Error: "...your query looks similar to automated requests from a computer virus or spyware application."

2009-08-06 Thread Nick Johnson (Google)
We're currently seeing some issues with users serving off custom domains. We're working on resolving it right now. -Nick Johnson On Thu, Aug 6, 2009 at 3:26 PM, DJB wrote: > > We host our Google Gadgets components on App Engine. > > This morning we started receiving this error (See below): > > 1

[google-appengine] Re: Appengine down..?

2009-08-06 Thread Nick Johnson (Google)
Hi Dieter, We're currently seeing some issues with users serving off custom domains. We're working on resolving it right now. -Nick Johnson On Thu, Aug 6, 2009 at 3:30 PM, Dieter Krachtus wrote: > > Some users informed me that my appengine is down: www.chartle.net. I > guess it is up again by t

[google-appengine] Appengine down..?

2009-08-06 Thread Dieter Krachtus
Some users informed me that my appengine is down: www.chartle.net. I guess it is up again by the time you read this. Nonetheless... Is something planned for the appengine dashboard to notify users about downtime events? Or even send an info-email if the downtime exceeds a certain duration or an q

[google-appengine] Re: https support

2009-08-06 Thread Tony
Fair enough. I'm fine with "we're working on solutions," as long as it's not "sorry, wait for the world to upgrade to FF3/IE8." On Aug 6, 10:21 am, "Nick Johnson (Google)" wrote: > Hi Tony, > > We're looking into solutions. It's not as simple as it may first > appear - in the case of a service

[google-appengine] Google Error: "...your query looks similar to automated requests from a computer virus or spyware application."

2009-08-06 Thread DJB
We host our Google Gadgets components on App Engine. This morning we started receiving this error (See below): 1. The Gadget URLs are accessible from a web browser, but not from the _IG_FetchContent call from a Google Gadget. 2. The Gadget XML URL: http://www.bible-library.com/gadgets/dailybib

[google-appengine] Re: Google blocked My App Engine App for My IP address!!

2009-08-06 Thread Jon McAlister
We're having issues serving most custom domain traffic right now, and are serving up these sorry pages. appspot.com appears to be unaffected. Investigating. On Thu, Aug 6, 2009 at 7:19 AM, Jason Salas wrote: > > This seems to be a wide problem...I'm seeing others with it, too. > Probably a system

[google-appengine] Re: Versioning convention - best practice

2009-08-06 Thread Jason Salas
Thanks andi! :) On 8/6/09, Andi Albrecht wrote: > > On Thu, Aug 6, 2009 at 2:32 PM, Jason > Salas wrote: >> >> hi! >> >> i was just wondering what the best practice should be for numbering my >> app's versions in GAE.  i just noticed the dashboard tracks by whole >> numbers (ex: 1, 2, 3, 4, n),

[google-appengine] Re: My app is getting filtered by "sorry.google.com"!

2009-08-06 Thread Jon McAlister
We're having issues serving most custom domain traffic right now, and are serving up these sorry pages. appspot.com appears to be unaffected. Investigating. On Thu, Aug 6, 2009 at 7:17 AM, Nick Johnson (Google) wrote: > > Hi Joshua, > > This is a known issue - it should go away shortly, and is on

[google-appengine] Re: Getting the We're sorry... page

2009-08-06 Thread Jon McAlister
We're having issues serving most custom domain traffic right now, and are serving up these sorry pages. appspot.com appears to be unaffected. Investigating. On Thu, Aug 6, 2009 at 7:13 AM, Frank wrote: > > Me too! > my users are getting this error right now, please help > > "... but your query lo

[google-appengine] Re: https support

2009-08-06 Thread Nick Johnson (Google)
Hi Tony, We're looking into solutions. It's not as simple as it may first appear - in the case of a service like Amazon EC2, your server resides at only a single physical location, and so does the IP address you rent. In contrast, App Engine apps are served from IPs at Google datacenters around t

[google-appengine] Re: Google blocked My App Engine App for My IP address!!

2009-08-06 Thread Jason Salas
This seems to be a wide problem...I'm seeing others with it, too. Probably a system glitch. On 8/7/09, Hrishi wrote: > > When I try to access http://rumaps.rutgers.edu I get redirected to > http://sorry.google.com/sorry/?continue=http://rumaps.rutgers.edu/ . > > I can still access my App at http

[google-appengine] Re: https support

2009-08-06 Thread Tony
Why not charge a monthly fee for apps to get a static IP (like Amazon does)? Scarcity of supply seems like a bit of a cop-out to me - it's not apparent that a majority of app engine apps require this support. The customers you're losing because of this, however, are customers that plan to process

[google-appengine] Re: My app is getting filtered by "sorry.google.com"!

2009-08-06 Thread Nick Johnson (Google)
Hi Joshua, This is a known issue - it should go away shortly, and is only affecting a very small percentage of our users (your app continues to serve as normal for nearly everyone else). Sorry for the disruption. -Nick Johnson On Thu, Aug 6, 2009 at 3:14 PM, Joshua Smith wrote: > > Yikes!  ALL

  1   2   >