[google-appengine] Problems serving files with blank-space in the filename.

2010-09-23 Thread richardcur...@googlemail.com
Hi, I have problems serving files with blank-space. app.yaml - url: /fonts static_dir: fonts expiration: "10d" It is no problem serving files like: http://domain.com/fonts/admire.ttf If I type this URL in the browser it downloads the file. A problem is if the font filename contains a bl

[google-appengine] Re: Problems serving files with blank-space in the filename.

2010-09-25 Thread richardcur...@googlemail.com
Really nobody got a clue where the problem might be? Do you encounter problems serving files with blank spaces? Anybody? On Sep 24, 12:16 am, "richardcur...@googlemail.com" wrote: > Hi, > > I have problems serving files with blank-space. > > app.yaml > > - ur

[google-appengine] Store information when people log into appengine..?

2009-03-19 Thread richardcur...@googlemail.com
For statistical reasons I would like to store the time and IP/Email of people logging in at the time of login. How do I do that? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to t

[google-appengine] Redirect all calls to appengine url to my Google Apps url

2009-04-17 Thread richardcur...@googlemail.com
Hi, how do I somehow 'redirect' all calls to appengine url to my Google Apps url? Something like: (Status-Line) HTTP/1.1 301 Moved Permanently if somebody calls: http://example.appspot.com I want it to be redirected to http://www.example.com similarily if somebody calls http://example.

[google-appengine] Re: Redirect all calls to appengine url to my Google Apps url

2009-04-18 Thread richardcur...@googlemail.com
I know in principle how to redirect. The point is, all appengine python handler classes are identical for both http://example.appspot.com and http://www.example.com So I had to check in EVERY python handler class - is the call coming from example.appspot.com - if yes redirect to www.example.co

[google-appengine] Re: Redirect all calls to appengine url to my Google Apps url

2009-04-18 Thread richardcur...@googlemail.com
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 this group, send email to google-appengine

[google-appengine] How are cookies sent?

2009-04-18 Thread richardcur...@googlemail.com
Hi, Sorry if this is a dumb question. I am watching the HTTP headers of two of my appengine locations. Downloading files from one always sends cookies along the request. The other appengine does not. I want to prevent cookies being sent. How do I do that? --~--~-~--~~

[google-appengine] Re: Redirect all calls to appengine url to my Google Apps url

2009-04-18 Thread richardcur...@googlemail.com
works - except the calls to the appspot domain. I cannot use it this way :( On Apr 18, 4:48 pm, ctran wrote: > Try this: > >  http://appengine-cookbook.appspot.com/recipe/redirect-from-appspot-to... > > On Apr 18, 9:18 am, "richardcur...@googlemail.com" > > wrote:

[google-appengine] Re: Shrink Javascript with Python..?

2009-05-04 Thread richardcur...@googlemail.com
Thanks. And this is the best method to shrink Javascript? Do you have any experience with it? Does it return 100% working JS in all cases? On May 4, 3:35 pm, Barry Hunter wrote: > http://www.crockford.com/javascript/jsmin.py.txt > > :) > > On 04/05/2009, richardcur...@googlemail

[google-appengine] Shrink Javascript with Python..?

2009-05-04 Thread richardcur...@googlemail.com
I dynamically generate a lot of Javascript on appengine before I serve it to the user as part of the website. Can I somehow obfuscate/shrink this Javascript from Python to improve page loading times? thx.ricky. --~--~-~--~~~---~--~~ You received this message becaus

[google-appengine] Re: Shrink Javascript with Python..?

2009-05-04 Thread richardcur...@googlemail.com
Actually I am already doing something similar as jsmin since I generate all the JS by myself in python. Still I was looking for something less trivial. Real obfuscation. GWT for example does real obfuscation and the shrinking results are impressive. Especially local variables etc. can be highly o

[google-appengine] Add StringProperty to Model without problems with the datastore?

2009-05-05 Thread richardcur...@googlemail.com
Hi, I have a db.model and would like to add 2 db.StringProperties to it. Sadly users already stored thousands of these models in the datastore and I don't want to wipe it clean just to extend my model. Is there a way to do this without breaking my whole app? Perhaps one should write a visual to

[google-appengine] http://appgallery.appspot.com ???

2009-05-05 Thread richardcur...@googlemail.com
http://appgallery.appspot.com - Is it dead or why does the featured application not chaning? Always the GiftTag app. It is ok, but shouldn't we be presented with new apps every week? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[google-appengine] I have my Google Apps domain - under the hood is Appengine. How do I get the appengine domain?

2009-05-06 Thread richardcur...@googlemail.com
Hi, I have a domain example.com which actually has spot.appspot.com under the hood. I now want to know the appspot-domain inside appengine from pyhton code. Things like self.host_url return example.com. What I want is spot.appspot.com Thanks! ricky --~--~-~--~~~---~

[google-appengine] Traffic stats with Google Analytics and Alexa.com

2009-05-06 Thread richardcur...@googlemail.com
Hi, I have a domain example.com with many appspots under the hood. All hosted as subdomains. All include the same Google Analytics script to count traffic pointing to example.com I wonder if Google Analytics and especially Alexa.com will attribute all traffic going to those subdomains to exampl

[google-appengine] Re: I have my Google Apps domain - under the hood is Appengine. How do I get the appengine domain?

2009-05-06 Thread richardcur...@googlemail.com
I guess this will stay there forever and ever? and not disappear suddenly? On May 6, 4:10 pm, "Nick Johnson (Google)" wrote: > Actually, scratch my last. You can access your application's ID with > os.environ['APPLICATION_ID']. > > -Nick Johnson > > On Wed, May 6, 2009 at 3:09 PM, Nick Johnson (

[google-appengine] Do repeated things in appengine..?

2009-06-16 Thread richardcur...@googlemail.com
I want to do some kind of automated (i.e. no triggered by anyone) administrative task every 1-2 hours. Can I somehow schedule that to automatically happen in appengine? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups