Re: [google-appengine] Loading script with get variables in YAML?

2010-07-27 Thread Robert Kluin
As Ikai said, you can do this when you define your app. Not in your YAML mapping. For an example of exactly what you are asking for see, http://code.google.com/appengine/docs/python/tools/webapp/running.html Robert On Jul 27, 2010, at 14:47, "Ikai L (Google)" wrote: > Can you parse the

[google-appengine] Streaming Video from App Engine

2010-07-27 Thread vinoo
I'm trying to stream a Video from App Engine. I'm able to play the content in Firefox but the video is not playing in Chrome. Resource.java ( servlet ), { BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); resp.setContentType("video/ogg"); blobstoreService.se

[google-appengine] Re: Performance of using many || statements in a query?

2010-07-27 Thread Stephen Johnson
Hi Mark, When you use || operator, the query is executed as individual sub- queries, one for each username == 'x'. According to the docs, there can only be a maximum of 30 sub-queries so you would be maxed out at 30 friends. I can only assume that the datastore would execute these sub-queries i

[google-appengine] Re: Google App Python src code download

2010-07-27 Thread Mike Wesner
I think it is good that it is NOT possible to download the source. It is a nice security feature. -mike On Jul 27, 1:20 pm, "Ikai L (Google)" wrote: > Backups are important. Any serious developer, especially if you are running > a business, will have their code in a source code repository. Ther

[google-appengine] Re: Disable gzip encoding

2010-07-27 Thread Donovan
They're making the request for a SWF file from another SWF file, they stated that they did not see a way to change the Accept header for that request. What they're really asking to do is to disable gzip compress for the SWF mimetype (which to me seems odd that google would be doing, since just like

[google-appengine] Re: GAE + JAXB

2010-07-27 Thread Luis Daniel Mesa Velasquez
"Will it play in App Engine" http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine While we do not support the entirety of the Java EE specification, many of its individual

[google-appengine] Please help! App Engine mail marked as spam.

2010-07-27 Thread Nathan Gray
Fellow GAE users, It's come to my attention that my account confirmation requests are being marked as spam, which may explain why over 25% of my users haven't confirmed their accounts. My messages are being sent from nore...@hexalex.com, and hexalex.com has an SPF record set up like so: *v=spf1

[google-appengine] Re: What's the max numeric id datastore, as a start...

2010-07-27 Thread Geoffrey Spear
db.Key is the type of the key, not the numeric ID; the ID is an integer. I believe they're limited to 64 bits, the same as an IntegerProperty. Note that a key isn't required to have a numeric ID; it could have a key name instead. And IDs aren't unique across the datastore; only within a Kind for

Re: [google-appengine] Re: Limits of using URL Fetch service

2010-07-27 Thread Ikai L (Google)
It doesn't seem like a hack at all, actually. The problem, I think, is that many web servers do NOT support it. Do you have a list of services that do? Otherwise, nice find! On Tue, Jul 27, 2010 at 12:34 PM, hector rovira wrote: > I found a way to get around the 1MB limit on the URLFetchService,

[google-appengine] Re: Fetching ranges of a query

2010-07-27 Thread Bernard Matthews
I'll look into that right now :) Thanks Jeff. I hope this isn't like a glass hammer. On Jul 27, 9:00 pm, Jeff Schwartz wrote: > Check the docs on cursors. They do what you describe. They are also > serializable as well as url friendly. > > On Tue, Jul 27, 2010 at 3:24 PM, Bernard Matthews < > >

[google-appengine] What's the max numeric id datastore, as a start...

2010-07-27 Thread Giacecco
Dear all, I have searched the answer to this in the group and in the FAQ but was not successful, although it seems quite a trivial question: what's the max numeric id I could find in the datastore if I kept adding data to it? I need to base part of my algorithms on the key numeric value, so I need

Re: [google-appengine] Fetching ranges of a query

2010-07-27 Thread Jeff Schwartz
Check the docs on cursors. They do what you describe. They are also serializable as well as url friendly. On Tue, Jul 27, 2010 at 3:24 PM, Bernard Matthews < giant.killer.monk...@gmail.com> wrote: > The question might be wrong for this group, because maybe it's more of > an SQL or python question

[google-appengine] Re: Limits of using URL Fetch service

2010-07-27 Thread hector rovira
I found a way to get around the 1MB limit on the URLFetchService, but it depends on the HTTP Range header... the web service you are calling must support that header. My problem was that I needed to request some data from a bucket on Google Storage for Developers (which supports Range header queri

[google-appengine] Fetching ranges of a query

2010-07-27 Thread Bernard Matthews
The question might be wrong for this group, because maybe it's more of an SQL or python question then something appengine specific, I'm relatively new to programming so I'm not sure. The issue I'm having is that, I'd like to be able to query a database, but just fetch it in chunks so I can display

[google-appengine] Performance of using many || statements in a query?

2010-07-27 Thread Mark
Hi, I'm interested in knowing how well multiple OR (||) statements would operate in a single query. For example, I want to find all friends that have recommended a particular product: Query query = pm.newQuery(Recommendation.class, "(username == 'turtle' || username == 'frog' |

[google-appengine] Re: Developer Invite

2010-07-27 Thread Matt H
I had this problem too. On Jul 27, 1:50 pm, Sharma Anil wrote: > I invited a Google Account email-ID (   x...@.org.in )  to > participate in development and app engine sent the email invite. > On clicking on the authorisation link, the invitee is taken to  Google > Account sign in page as exp

Re: [google-appengine] Loading script with get variables in YAML?

2010-07-27 Thread Ikai L (Google)
Can you parse the URI in the request object and extract the variables you need? I'm fairly certain the YAML file processing doesn't work that way. On Tue, Jul 27, 2010 at 7:04 AM, Zippoxer wrote: > I'm trying to do something like this: > > - url: /viewpost/(.*) > script: asklogin.py?id=\1 > > S

Re: [google-appengine] Limits of using URL Fetch service

2010-07-27 Thread Ikai L (Google)
10 second limit for URLfetch, I mean. You can serve larger data sizes using the Blobstore API: http://code.google.com/appengine/docs/python/blobstore/ On Tue, Jul 27, 2010 at 11:45 AM, Ikai L (Google) wrote: > No, that's the limit. Also be aware that there's a 10 second limit. > > > On Tue, Jul

Re: [google-appengine] Limits of using URL Fetch service

2010-07-27 Thread Ikai L (Google)
No, that's the limit. Also be aware that there's a 10 second limit. On Tue, Jul 27, 2010 at 2:02 AM, Ahmed Emir KAMMOUN < kammoun.ahmed.e...@gmail.com> wrote: > Hello, > > I want to know if there is a possibility to have a more big amount of > request and response size. > Actually, I find that it

[google-appengine] Re: Metadata accounts for a large percentage of an entity?

2010-07-27 Thread Mark
Ok thanks for the explanation, makes sense, Mark On Jul 25, 11:15 am, Geoffrey Spear wrote: > The values quoted are for all entities of the kind you're examining; > the top of the screen will show how many entities there are and the > average size.  I believe it will be typical for metadata to b

Re: [google-appengine] Disable gzip encoding

2010-07-27 Thread Ikai L (Google)
Can you change the "accepts" header on your client? If our front end servers see that you are saying you accept GZIP, we will assume you accept it and gzip the response. On Sun, Jul 25, 2010 at 11:45 PM, ts1 wrote: > GAE servers always gzip-compress SWF (Flash) files for modern > browsers. > Our

Re: [google-appengine] Re: Google App Python src code download

2010-07-27 Thread Ikai L (Google)
Backups are important. Any serious developer, especially if you are running a business, will have their code in a source code repository. There is no excuse for not doing so. On Thu, Jul 22, 2010 at 11:26 PM, Cluster wrote: > of course not > now i must recode it all > but, i think, that googlers

Re: [google-appengine] moving a mobile number?

2010-07-27 Thread Ikai L (Google)
Can you fill out the SMS issues form? https://appengine.google.com/waitlist/sms_issues On Thu, Jul 22, 2010 at 1:31 AM, Dick Davies wrote: > I've always used appengine on my gmail account. I've just enabled Google > Apps for my domain and wanted to move > my apps over (I'm happy to do this by ju

Re: [google-appengine] Python Data Exporter - Filter by date range?

2010-07-27 Thread Ikai L (Google)
No, you're not missing anything. This isn't functionality that ships with the bulk export tool, but you can use it as a reference implementation to understand remote_api and add the functionality you need. On Thu, Jul 22, 2010 at 10:29 AM, Scott Newman wrote: > Hello All, > > I'm going to be acc

Re: [google-appengine] Newbie question (html not rendering)

2010-07-27 Thread Alon Carmel
The template seems fine. we need to see the view controller code. - Cheers, def AlonCarmel(request) import simplejson as json contact = {} contant['email'] = 'a...@aloncarmel.me' contact['twitter'] = '@aloncarmel' contact['web'] = 'http://aloncarmel.me' contact['phone

Re: [google-appengine] Java files not compiling upon Run As -> Web Application

2010-07-27 Thread Ikai L (Google)
I've seen this happen occasionally. "Clean" has worked, and strangely enough, restarting the computer worked as well. I didn't bother to drill down to the source of the issue because I just wanted to get up and running, though. On Wed, Jul 21, 2010 at 1:24 PM, Saqib Ali wrote: > I just configure

[google-appengine] Developer Invite

2010-07-27 Thread Sharma Anil
I invited a Google Account email-ID ( x...@.org.in ) to participate in development and app engine sent the email invite. On clicking on the authorisation link, the invitee is taken to Google Account sign in page as expected. However, on signing in, it is taken to 'Create Application' start

[google-appengine] Re: Channel API

2010-07-27 Thread GoSharp Lite
Hints to have Channel API works in SDK can be found in below link. http://groups.google.com/group/google-appengine-java/browse_thread/thread/6fa09953ffae2cd3/c1db7de5fdb82b65# On 7月27日, 上午4時04分, "Ikai L (Google)" wrote: > It's in the SDK now. It just won't work in production. > > On another note,

[google-appengine] Newbie question (html not rendering)

2010-07-27 Thread Virender
Hi I am following the python tutorial. Everything was fine until I created the template. Here is my index.html file {% for greeting in greetings %} {% if greeting.author %} {{ greeting.author.nickname }} wrote: {% else %} An anonymous person wrote: {% endif

[google-appengine] Loading script with get variables in YAML?

2010-07-27 Thread Zippoxer
I'm trying to do something like this: - url: /viewpost/(.*) script: asklogin.py?id=\1 So If I type the URL *http://localhost:8080/viewpost/302* It will load the script *asklogin.py* and send a get variable: id = 302. What I did in the code above, doesn't work. Any other solution? -- You recei

[google-appengine] Limits of using URL Fetch service

2010-07-27 Thread Ahmed Emir KAMMOUN
Hello, I want to know if there is a possibility to have a more big amount of request and response size. Actually, I find that it is limited to 1 MB. http://code.google.com/intl/fr-FR/appengine/docs/java/urlfetch/overview.html#Quotas_and_Limits Regards, -- You received this message because you a

Re: [google-appengine] Re: Help need!! Can not update my application

2010-07-27 Thread Edel SM
you can try deleting ~/.appcfg_cookies and try again. if still 403 (or 404) might be a google side problem. that's only my guess. On Tue, Jul 27, 2010 at 11:01 PM, James Yang wrote: > Have try it before, clearing cookies, Not working > > > On Jul 26, 10:48 am, Alon Carmel wrote: >> try clearing

[google-appengine] Re: Help need!! Can not update my application

2010-07-27 Thread James Yang
Have try it before, clearing cookies, Not working On Jul 26, 10:48 am, Alon Carmel wrote: > try clearing the security cookies using --no_cookies and --email and > --passin > - > Cheers, > > def AlonCarmel(request) >      import simplejson as json >      contact = {} >      contant['email'] = '..

[google-appengine] Re: Enhancing Classes from an external Project

2010-07-27 Thread AlexG
Problem is solved. On 26 Jul., 17:05, AlexG wrote: > Hi all, > > I want to build a Web-App, which is strongly mpdular. This means the > GUI and the Database Classes and Services > are in their own Projects. > > So I got following: > > DataStore-Classes (jdo) and the Services to store data in the

Re: [google-appengine] Re: Question for Google Team regarding Receive Email address count limit?

2010-07-27 Thread Vivek Ramachandran
Thanks Nick! Just what I hoped for. I will get in touch in case we need more fire power using the request forms on the app engine site. Regards, VR On Tue, Jul 27, 2010 at 5:55 PM, Nick Johnson (Google) < nick.john...@google.com> wrote: > Hi Vivek, > > On Thu, Jul 22, 2010 at 4:37 AM, Vivek Ra

Re: [google-appengine] Re: Question for Google Team regarding Receive Email address count limit?

2010-07-27 Thread Nick Johnson (Google)
Hi Vivek, On Thu, Jul 22, 2010 at 4:37 AM, Vivek Ramachandran < vivek.securitywiz...@gmail.com> wrote: > Thanks Nick. > > But I need someone from Google App Engine team to confirm what the system > quotas are for incoming email. > > As I understand: > > 1. There are no limits on the number of ema

[google-appengine] GAE + JAXB

2010-07-27 Thread ping
Does GAE support JAXB? i read several time that this is not the case -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] Re: Question about your ToS

2010-07-27 Thread Matt H
Ok. Thanks. =) On Jul 27, 8:36 am, Jeff Schnitzer wrote: > Then you shouldn't worry about it.  The great thing about the > pornography rule ("they know it if they see it") is that 99.99% of the > time you know it too.  It's pretty obvious to everyone when you're > trying to cheat the system.  Whe

[google-appengine] Re: Authentication across MULTIPLE apps

2010-07-27 Thread l.denardo
Look into OpenID api. It allows you to authenticate users using the same credential, and if the user is signed in you can implement a good single sign on. User data will anyway be handled separately by each application, since datastore cannot be shared. Links: http://code.google.com/appengine/do

Re: [google-appengine] Re: Question about your ToS

2010-07-27 Thread Jeff Schnitzer
Then you shouldn't worry about it. The great thing about the pornography rule ("they know it if they see it") is that 99.99% of the time you know it too. It's pretty obvious to everyone when you're trying to cheat the system. When you're not trying to cheat the system - that's obvious too. Jeff

[google-appengine] How to visualize a spreadsheet?

2010-07-27 Thread Phil
Hello, I'd like to visualize/edit/create a spreadsheet form my web application located on GAE. Does it exist a framework that is able to show/edit a spreadsheet? I mean, I'd like an existing GUI that is able to show/modify/create a spreadsheet. In ohter words, something similar to google Docs. Ac

[google-appengine] Re: Problem : unable to find valid certification path to requested target

2010-07-27 Thread Phil
I've found my problem. I needed to add the certificate of Google into my cacerts of java. Thanks On 26 juil, 12:02, Phil wrote: > Hello, > > I've created the example code 'guestbook'. However, when I upload the > program, I receive this error : > > com.google.appengine.tools.admin.AdminException