[google-appengine] Re: I have trouble to visite my account

2009-04-22 Thread Rachael
Sorry, I mean 2nd application. It is still broken. Thank you! On Apr 20, 5:34 pm, Jeff S (Google) j...@google.com wrote: Hello Rachel, What is the email address for your second account? Also, if you don't mind my asking, why a second account? If, for example, you are running close to the

[google-appengine] Paid Support

2009-04-22 Thread Paul Kinlan
Hi Guys, Are there any plans for a paid support system, I am asking because there are several issues over the last few weeks that I have had where a quick official response is needed. Although this group is great, and I enjoy the conversations we have I am really frustrated that I can't always

[google-appengine] Re: Paid Support

2009-04-22 Thread KARTHIKEYAN KARTHIKEYAN
On Wed, Apr 22, 2009 at 12:15 PM, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, Are there any plans for a paid support system, I am asking because there are several issues over the last few weeks that I have had where a quick official response is needed. Although this group is great,

[google-appengine] Re: Digg API: User-Agent required

2009-04-22 Thread Nick Johnson
Hi, This is a known issue with sites that check user-agent headers. By design, Google App Engine does not allow you to specify your own user-agent header. In production, a user-agent specifying the source of the request is automatically added. The behaviour you're seeing in the SDK is added to

[google-appengine] Re: Datastore usage ~ 80 times more than expected

2009-04-22 Thread Nick Johnson
Hi Amir, If these are the only kinds and indexes you have then this is indeed anomalous. Send me your app's ID (via email, if you wish) and I'll have someone look into it. -Nick Johnson --~--~-~--~~~---~--~~ You received this message because you are subscribed

[google-appengine] Re: Datastore usage ~ 80 times more than expected

2009-04-22 Thread KARTHIKEYAN KARTHIKEYAN
On Wed, Apr 22, 2009 at 1:19 PM, Nick Johnson nick.john...@google.comwrote: Hi Amir, If these are the only kinds and indexes you have then this is indeed anomalous. Send me your app's ID (via email, if you wish) and I'll have someone look into it. -Nick Johnson

[google-appengine] Re: Digg API: User-Agent required

2009-04-22 Thread KARTHIKEYAN KARTHIKEYAN
On Wed, Apr 22, 2009 at 1:14 PM, Nick Johnson nick.john...@google.comwrote: Hi, This is a known issue with sites that check user-agent headers. By design, Google App Engine does not allow you to specify your own user-agent header. In production, a user-agent specifying the source of the

[google-appengine] Re: Datastore Geography.

2009-04-22 Thread javaDinosaur
Thank you Ryan the post provided exactly what I needed to hear about Datastore api behaviour. I will be tuned in for your Google I-O presentation. In some respects I am relieved to read that an App is usually only served from one location because if not I would have remained puzzled as to how

[google-appengine] Re: Datastore Geography.

2009-04-22 Thread KARTHIKEYAN KARTHIKEYAN
On Wed, Apr 22, 2009 at 1:49 PM, javaDinosaur jonathan...@hotmail.co.ukwrote: Thank you Ryan the post provided exactly what I needed to hear about Datastore api behaviour. I will be tuned in for your Google I-O presentation. In some respects I am relieved to read that an App is usually only

[google-appengine] Re: Searching for a GAE compatible JSON library.

2009-04-22 Thread 风笑雪
It's much easier if you use python. 2009/4/22 javaDinosaur jonathan...@hotmail.co.uk Sorry wrong group, reposted here: http://groups.google.com/group/google-appengine-java/browse_thread/thread/c21103b24767591a (Google admins delete if you wish.)

[google-appengine] Re: Simple GQL Query

2009-04-22 Thread 风笑雪
Do you mean this: class forum_db(db.Model): id = db.IntegerProperty() topic = db.StringProperty() ... qs = db.GqlQuery(SELECT * FROM forum_db ORDER BY id LIMIT 10) for q in qs: self.response.out.write(diva href=\/viewtopic?topic=%s\%s/a/ div % (q.id, q.topic)) 2009/4/22

[google-appengine] Re: Simple GQL Query

2009-04-22 Thread Nick Johnson
q.id will return the value of the 'id' property you added to the model, but all entities also have an automatically generated id (or a name, if you set one instead), which you can access with q.key().id(). -Nick Johnson --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: Query() vs. GqlQuery() different results for the same queries (Python)

2009-04-22 Thread 风笑雪
You mean this? Wrong: filter(checkpoint_id=, bus.checkpoint_id) Right:filter(checkpoint_id= , bus.checkpoint_id) 2009/4/22 Dmitry Kachaev dmitry.kach...@gmail.com I got it, thanks all! It was a lack of space between property name and operator in filter() method. It led to empty result

[google-appengine] Re: Simple GQL Query

2009-04-22 Thread 风笑雪
But q.key().id() is not order by time,sometimes you need set a key_name to instead of id. 2009/4/22 Nick Johnson nick.john...@google.com q.id will return the value of the 'id' property you added to the model, but all entities also have an automatically generated id (or a name, if you set one

[google-appengine] Re: Simple GQL Query

2009-04-22 Thread KARTHIKEYAN KARTHIKEYAN
On Wed, Apr 22, 2009 at 3:24 PM, Nick Johnson nick.john...@google.comwrote: q.id will return the value of the 'id' property you added to the model, but all entities also have an automatically generated id (or a name, if you set one instead), which you can access with q.key().id(). -Nick

[google-appengine] How to use lucene in app engine ?

2009-04-22 Thread Tom Wu
Hi All, How to use lucene in app engine ? Is any document ? Best 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] Re: How to use lucene in app engine ?

2009-04-22 Thread Nick Johnson
Hi Tom, Shay Banon recently wrote a blog entry detailing how to use Compass (a Java search framework that uses Lucene) in App Engine here: http://www.kimchy.org/searchable-google-appengine-with-compass/ -Nick Johnson --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: Is there a way to do it?

2009-04-22 Thread arnie
Thanks for the help. That means I have to send data in xml from iphone by using POST request, right? Please correct me if I am wrong Thanks Arnie --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Re: Datastore Geography.

2009-04-22 Thread ryan
On Apr 22, 2:49 am, javaDinosaur jonathan...@hotmail.co.uk wrote: Last year I noticed that GAE hosted my trial App within 30ms of my UK location i.e. somewhere in Europe. Such automatic hosting geo affinity is highly impressive but what if an App's admin is UK based but the you might be

[google-appengine] Re: Is there a way to do it?

2009-04-22 Thread arnie
Please also provide a small example of a request that is sending the xml as my iphone application do not have any html page/html form that can make a POST request with the respective xml data Please help, it is very urgent Thanks Arnie --~--~-~--~~~---~--~~ You

[google-appengine] Large Data Sets - Any Best Practices?

2009-04-22 Thread leazar
I'm trying to figure out how to get a large data set (100 million rows) onto Google app engine so that I can run computations against it. While the rows are quite large, the columns are small...containing customer id's, movie id's and ratings. I'm hoping to use Google AppEngine to get an

[google-appengine] A suggestion.

2009-04-22 Thread gops
http://code.google.com/p/googleappengine/issues/detail?id=1388 --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Activating GAE (Java) account issues

2009-04-22 Thread Pete George
Jason, Can you do for me what you did for Thomas? I get to the page that says Thanks for signing up. Once your account is activated, you will receive an email with more information.. I did the phone activation and I seem to be able to make Python apps. I haven't received any info in email. Am I

[google-appengine] Re: Large Data Sets - Any Best Practices?

2009-04-22 Thread 'Αλκης Ευλογημένος
100 entities per 6.5 seconds sounds like you are writing one at a time. Are you batching your puts? Are you using multiple threads? You probably want to look into the implementation of bulkloader: http://code.google.com/appengine/docs/python/tools/uploadingdata.html and do something similar. On

[google-appengine] Re: What is CPU Time?

2009-04-22 Thread Nick Johnson
Hi , 1) Google said that CPU time free tier reduced to 6.4 hours/day from 46 hours/day 2) what is CPU time? CPU time is the amount of time spent by a CPU core processing code for your site. It's analogous to 'man hours'. 3) 6.4 hours/day means my site will be up and running only 6.4 hours

[google-appengine] problem with google eclipse plugin site

2009-04-22 Thread MeiravD
Hi All, I have problems to access google eclipse plugin for exclipse http://dl.google.com/eclipse/plugin/3.4 - the URL does not exists on server. Therfore I can not add this plugin to eclipse - Any idea of where can I get this plugin ? (does the site changed ?) every document points to this

[google-appengine] Newly Created Google App Engine app not showing up in apps list

2009-04-22 Thread JonnyBoy
Hi - I've created 3 apps today - none of which are showing up in my apps list, yet the count on my remaining free apps is off. I have an app that I've had for a while (no development yet, but it's there) and I can still get to the screen for it. I just changed my email address and I had to

[google-appengine] Dynamic Image Processing in Java API

2009-04-22 Thread harry
Is dynamic storage and retrieval of images is possible for Java API of Google App Engine? --~--~-~--~~~---~--~~ 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] django urlize

2009-04-22 Thread niklasr
dear group, django urlize works a bit dubiously för unobvious inputs for example 'Check out djangoproject.com(www.djangoproject.com)' would have expected output 'Check out djangoproject.com(a href=http://www.djangoproject.com; rel=nofollo.djangoproject.com/a)' but is Check out a

[google-appengine] What is CPU Time?

2009-04-22 Thread EmbajadorMX
Hi Folks! I have some questions about CPU time... please read all questions before repliying 1) Google said that CPU time free tier reduced to 6.4 hours/day from 46 hours/day 2) what is CPU time? 3) 6.4 hours/day means my site will be up and running only 6.4 hours a day when using free

[google-appengine] Changing my email for my google account breaks many things

2009-04-22 Thread JonnyBoy
I've changed my email address for my google account, and now trying to create an app or use an app that I created earlier today (which never showed up - this was after already changing my email address) is asking me to verify account by SMS - which won't work since I've already used my cell phone

[google-appengine] google eclipse plugin : deploy app with error : 400 Bad Request

2009-04-22 Thread ytbryan
hi all, i followed the instruction here: http://code.google.com/webtoolkit/gettingstarted.html I got the following error when deploying my web application freshly created from google eclipse plugin( without modification). I already got my application id from GAE. I search the forum and

[google-appengine] DataNucleus enhanced class throws IllegalArgumentException

2009-04-22 Thread Brice
Good evening, I am hoping someone can help me with this, as I am stuck. I have two classes, super/subclass. Each has a variety of properties on it, but I am only mapping a single property id which is in the superclass. Everything seems fine, but at runtime, I get the following exception:

[google-appengine] Re: Cron upload issues (for whitelisted apps only?)

2009-04-22 Thread Jeff S (Google)
Hi Sverre, I began looking into this a few hours ago and I haven't been able to reproduce this behavior yet. We're still investigating but I wanted to let you know. The exception on cron_info when the yaml file only contains cron: looks like a bug. Thank you, Jeff On Sat, Apr 18, 2009 at 4:55

[google-appengine] Re: Newly Created Google App Engine app not showing up in apps list

2009-04-22 Thread Nick Johnson
Hi Jonny, Have you tried going to http://appengine.google.com/a/yourdomain ? If you're using a Google Apps account to create your apps, they will show up in that console (if that's where you created them), but not at http://appengine.google.com/ . -Nick Johnson

[google-appengine] Re: dumb question: mysite.appspot.com vs mysite.com

2009-04-22 Thread Nick Johnson
Hi, The names you can choose for App Engine apps are taken from the same namespace as those used for gmail addresses. As such, you can't use any name that was used for another app, or for a gmail address (except your own). Bear in mind, though, that the app ID doesn't have to match the domain

[google-appengine] Re: problem with google eclipse plugin site

2009-04-22 Thread Nick Johnson (Google)
Hi Meirav, Eclipse uses the URL you provide as a base URL; the actual resources it requests are different. It's not an error that the base URL is 404; adding it in Eclipse should work just fine. I just checked, and it still works fine for me. -Nick Johnson

[google-appengine] Re: Large Data Sets - Any Best Practices?

2009-04-22 Thread Wooble
On Apr 21, 10:49 pm, leazar kevin.haverl...@gmail.com wrote:  I'm hoping to use Google AppEngine to get an economy of scale in my analysis. I think you'll find that analyzing massive amounts of data is one of the things App Engine is the worst at. Long running processes might change this in

[google-appengine] Re: Google App Engine applications are slow today

2009-04-22 Thread weifeng Yao
On Tue, Apr 21, 2009 at 2:41 PM, Charles2008 wyao2...@gmail.com wrote: Hi, Has anyone experienced slow response from gogole app recently, especially today (04-21-2009)? Out google application is really slow today. It takes long time to render images and pages. Can anyone shed any light on

[google-appengine] Re: Datastore usage ~ 80 times more than expected

2009-04-22 Thread Andy Freeman
How are you estimating the size? For example, do you think that strings are stored using one byte per character or two? (I don't know, but I do know that they're interpreted as unicode.) I've asked for mechanisms to help estimate size - see

[google-appengine] Re: What is CPU Time?

2009-04-22 Thread javaDinosaur
Other cloud system vendors rent web servers by the hour and a server- hour is the minimum billable period. When Google refers to x free hours they are giving a high level summary. Consider a web site that processes web pages in 0.1 of a second and which receives 24 page hits spaced evenly over

[google-appengine] Re: Datastore usage ~ 80 times more than expected

2009-04-22 Thread javaDinosaur
A rough estimate shows the app engine is using 80 times more storage than one might expect given the data stored there. Is your storage volume analysis based on 100 records or 10,000? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[google-appengine] Re: The new Google Analytics API and App Engine

2009-04-22 Thread Jeff S (Google)
Hi tijer, I should be possible to set the authorization header. Are you using the Java runtime or Python. For Java, I looked at the gdata-java-client as an example (since you can use this library on App Engine) and it uses httpConn.setRequestProperty(name, value); Where httpConn is an

[google-appengine] Request time is too large

2009-04-22 Thread vanya
About 04-22 08:05AM the request time is increased from about 200-500ms per request to 10s. The cpu time wasn't changed seriously. There was about 150 requests/second (16 cpu seconds/second) in this time. In 09:33AM app started work well. But about 09:55 it crashed again. And now my users can't

[google-appengine] Increasing request time

2009-04-22 Thread vanya
At 04-22 08:00AM my request time was 200-500ms. At 08:05AM the one was 10s. There was 140-150 requests/second (about 16 CPU seconds used/ second) in this time. CPU time wasn't changed seriously. Application was returned to normal work in 09:33AM. What was that and how frequently is this happened

[google-appengine] Re: Request time is too large

2009-04-22 Thread vanya
It still work slowly. The CPU time of requests is 60-500ms. The request time 8-10s. How can they differ in 100 times? What kind of problem is it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Issue of JDK 1.5.x with Google App Engine for Java Eclipse plugin

2009-04-22 Thread MathThinking
Environment: 1) Eclipse 3.4 with MyEclipse, 2) Google App Engine for Java 1.20 plugin for Eclipse 3) GWT 1.6.4 When I tried to run all the examples of GWT 1.6.4 under Google App Engine for Java 1.20 by creating new Google projects then coping the src code from the GWT samples into the projects

[google-appengine] Re: Datastore Geography.

2009-04-22 Thread Panos
One aspect that neither Ryan nor anybody else in this thread touched upon is the entity hierarchy relationship. I understand that transactions that involve multiple records are only honored among entities that have the same GAE ancestry. This along with hints in the documentation and

[google-appengine] Re: Datastore usage ~ 80 times more than expected

2009-04-22 Thread Amir Michail
Hi, This turned out to be a temporary error. Usage is now (apparently) reported correctly. Amir --~--~-~--~~~---~--~~ 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: push http not allowed?

2009-04-22 Thread Bennomatic
The AJAX disconnect and reconnect option is not all that difficult. While it's certainly nice to do push, the limitation is certainly understandable from a billed-resources perspective. Basically, to do it, you build into your AJAX request handlers a setTimeout command which queues up a request

[google-appengine] Re: Request time is too large

2009-04-22 Thread vanya
Still have this problem. Have anybody else had this problem? What's the reason of it? Give me any ideas please. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send

[google-appengine] Built-in testing

2009-04-22 Thread Andrew Fong
AppEngine seems to be very much in the business of altering developer behavior to get them to make more scalable apps. And since well-tested apps are arguably part of scaling (albeit in a different sense of the word), I was thinking that AppEngine should ship with built-in testing tools --

[google-appengine] 400 bad request error while uploading Google App via Eclipse plugin..

2009-04-22 Thread rohit
Hi, I am getting a 400 bad request error while uploading a simple app using eclipse plugin. App Id = 'puma-core'. app id is not supposed to have a hyphen but I guess my app Id was accepted. anyhow..why plugin is having this issue initiating update. Unable to upload: java.io.IOException: Error

[google-appengine] Re: becoming an app administrator with google apps account

2009-04-22 Thread Jeff S (Google)
Hi Jon, Ah, I think I see the problem. Since this app accepts Google Accounts, but not those from Google Apps, your Google Apps account will not be able to sign in as an admin for this application. If you create a new application with login settings associated with bigriddles.com then this

[google-appengine] using a WYSIWYG Editor on appengine

2009-04-22 Thread danfreak
Does anyone has a cool solution to use a WYSIWYG Editor on app engine? I'm wondering about the upload file limit, and therefore I would like to know if somebody managed to use a gzipped version for example of TinyMce (http://tinymce.moxiecode.com/) , FCK etc Cheers Daniel

[google-appengine] Using Google cloud

2009-04-22 Thread ester
I would like to have some more details about pricing using Google cloud --~--~-~--~~~---~--~~ 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

[google-appengine] Debugging App Engine errors

2009-04-22 Thread Morten Bek Ditlevsen
Hi there, I'm in the process of moving the database part of a social networking site to GAE. Each client sends a request to the server every 5 minutes with location information. From the location I calculate a list of geoboxes to store with the client's profile if the location is significantly

[google-appengine] Re: Large Data Sets - Any Best Practices?

2009-04-22 Thread leazar
Alkis...your right, I was doing them one at a time and will look at batching them. I saw the bulkloader, I was hoping to avoid venturing into Python :) Wooble...I'm beginning to come to the same conclusion: long running threads for data analysis is not what AppEngine is set up to do. Leazar

[google-appengine] Re: Large Data Sets - Any Best Practices?

2009-04-22 Thread 'Αλκης Ευλογημένος
There is nothing preventing you from doing bulk uploading in Java. All you need to do is batch your puts. Also for long running threads and analysis it is possible that AppEngine is not the right framework. That said you can always use AppEngine as a backing store if that makes sense for your

[google-appengine] Re: Built-in testing

2009-04-22 Thread 'Αλκης Ευλογημένος
Python has: nosegae unittest (part of python) webtest The tools are out there. You just have to dig them up a bit. On Wed, Apr 22, 2009 at 8:43 PM, Andrew Fong fongand...@gmail.com wrote: AppEngine seems to be very much in the business of altering developer behavior to get them to make more

[google-appengine] Re: Using Google cloud

2009-04-22 Thread 'Αλκης Ευλογημένος
And you couldn't find this link? http://code.google.com/appengine/docs/billing.html On Wed, Apr 22, 2009 at 10:12 PM, ester datagli...@gmail.com wrote: I would like to have some more details about pricing using Google cloud -- Alkis

[google-appengine] Re: The new Google Analytics API and App Engine

2009-04-22 Thread baytiger
Hi Jeff, I am using Python, and managed to get it to work by using the following. client = gdata.service.GDataService() # Tell the client that we are running in single user mode, and it should not # automatically try to associate the token with the current user

[google-appengine] Your application is exceeding a quota: App Config Service Config App Call Count

2009-04-22 Thread Alex
I've been having a lingering issue where after 100 uploads of one Version of my application causes this quota to be triggered: Your application is exceeding a quota: App Config Service Config App Call Count The update doesn't finish, I encounter a 500 Server error, and the default version

[google-appengine] Re: Datastore Geography.

2009-04-22 Thread ryan
On Apr 22, 10:38 am, Panos pa...@acm.org wrote: Anyway, I would appreciate if Ryan or somebody else who is familiar with the implementation elaborate further on whether today's implementation uses the ancestry hints when it decides how to partition the application data. it does! details in

[google-appengine] Re: using a WYSIWYG Editor on appengine

2009-04-22 Thread johntray
Yes, GAE has a class called zipserve for this. I use to serve TinyMCE with no problems. The only documentation is the source file itself, at http://code.google.com/p/googleappengine/source/browse/trunk/python/google/appengine/ext/zipserve/__init__.py. There's also a memcached example at

[google-appengine] Re: Datastore usage ~ 80 times more than expected (Add your vote to a datastore usage accounting feature)

2009-04-22 Thread Panos
I have also been puzzled at times on where the space is going. I filed this request today: More granular accounting of how datastore space is used http://code.google.com/p/googleappengine/issues/detail?id=1396 Please browse to the issue and add your vote/star if you want to see this feature

[google-appengine] Re: Still more Datastore timeouts

2009-04-22 Thread djidjadji
This is probably caused by your datastore.history file. This file keeps record of every index that is ever needed. You can delete this file and start the server again. 2009/4/22 Paul Kinlan paul.kin...@gmail.com: [snip] Another thing I have noticed, and it is not related is that certain indexes

[google-appengine] Cookie problems

2009-04-22 Thread Derek
Has anyone been having problems with cookies using URLConnection in java? I cannot access the set-cookie header in the response and automatic/ builtin cookie manager is not doing the trick for me. I was wondering if anyone knew how to get around the java url cookie management or if I can use

[google-appengine] Java question about: javax.imageio and java.awt.image

2009-04-22 Thread Danny
I am trying to put my java application under App Engine, but I use the above subject Sun Java classes, which App Engine does not recognize. I imagine that Google is working on putting these classes in App Engine, but, meanwhile, does anyone know if there are replacements? Thanks, Danny

[google-appengine] Strange behavior of bulkloader: it insert in Bigtable more entities then exists in .csv file

2009-04-22 Thread oqhost
Subj, tested several times: out_data.csv: 4000 unique entities class Artist(db.Model): artist_id = db.IntegerProperty() name = db.StringProperty() Last try: (in previous 2 attempts all params was the same, but results different; with another params results also varied...) appcfg.py

[google-appengine] Re: google eclipse plugin : deploy app with error : 400 Bad Request

2009-04-22 Thread Jeff S (Google)
Hello, It seems that the account you are using does not yet have permission to upload an app which uses the Java runtime. To request permission to upload an app which uses the Java runtime, sign up at the following URL: http://appengine.google.com/promo/java_runtime For now, access will be

[google-appengine] Re: DuplicatePropertyError in google-app-engine-django sample

2009-04-22 Thread rainbow wei
I have got the same error. And as you said, this error can be avoided by renaming the Choice class to Choice1. But it still confuse me: Poll still have a property name choice_set(as long as choice1_set). Where the hell is choice_set come from? On Apr 14, 11:47 am, Tim Hoffman zutes...@gmail.com

[google-appengine] Re: Query() vs. GqlQuery() different results for the same queries (Python)

2009-04-22 Thread Dmitry Kachaev
Exactly. Looking at exceptions reference I would expect BadQueryError or BadArgumentError to be raised in wrong call. Thanks again for helping me on this. -Dmitry On Apr 22, 7:26 am, 风笑雪 kea...@gmail.com wrote: You mean this? Wrong: filter(checkpoint_id=, bus.checkpoint_id) Right:

[google-appengine] appengine 开发 QQ群:3 9287176(注明appengine)

2009-04-22 Thread ajaxer
欢迎加入讨论。 --~--~-~--~~~---~--~~ 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 to

[google-appengine] Re: PHP + MySQL is a web standard ;-)

2009-04-22 Thread 李白,字一日
php is ok. but I recommend that google may have relational database operation support. On Mar 4, 9:37 pm, Wooble geoffsp...@gmail.com wrote: On Mar 3, 8:46 pm, wenxin.ren calid...@gmail.com wrote: the best result we may anticipate is that google may support php + mysql sooner PHP, maybe

[google-appengine] if it possible to make a model property have some fixed number of other model property

2009-04-22 Thread ajaxer
eg. class Facet(db.Model): class Square(db.Model): facets: Facet of Six so the count of facets property is always six; how can i realize this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Downloadable documentation for App Engine updated

2009-04-22 Thread Dan Sanderson
Hi all - The downloadable documentation for App Engine has been updated with the latest revision. This Zip archive of all of the docs includes all App Engine for Java documentation, App Engine for Python up to today's 1.2.1 release, and all FAQs and articles.