[google-appengine] Re: Free Quoata Reduction?

2009-06-23 Thread codingGirl

Here is a similar discussion in the Google Appengine Python Group:
http://groups.google.com/group/google-appengine-python/browse_thread/thread/226f7959cd54705


The Google appengine team should once and for all state what the
minimum free quotas will be in the next years. Appengine is a total
lock in for our work so Google should be clear what we can expect.
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



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

2009-06-17 Thread codingGirl

Ok, I know browsers have URL length limits. But I was talking about
sending data as part of the src=http://myappspot.appspot.com?
somdata=abcdefg of an iframe. So I was wondering are there limits

1. how much data I can stuff in that src-URL? I guess there is no
other way to do it if one uses an iframe.
2. are there any time limits while the browser fetches the appengine-
webpage for the iframe? Will appengine just time out if the src-URL-
data string is too long so it takes to long to finish the request? How
long can it take?

On Jun 17, 12:41 pm, Nick Johnson (Google) nick.john...@google.com
wrote:
 Hi Astrid,

 On Wed, Jun 17, 2009 at 6:20 AM, astrid.thuec...@googlemail.com 

 astrid.thuec...@googlemail.com wrote:

  In general - how much data can I send in an request to the appengine
  and be sure it won't time out? Is the amount different between a GET
  and POST request?

 Requests are limited to 10MB, and the counter on your request doesn't start
 until the entire request has been received.



  Another thing is, that I would like to create an iframe and send some
  data in the src-URL string:

  iframe src=http://myappspot.appspot.com?somdata=abcdefg; ... 

  I fear that in special cases there might be many iframes of this type
  on a users site and the src-String could be really really long. Does
  this mean it would time out?

 The most data you can reliably transfer in a URL is on the order of about 1k
 (different browsers have different URL-length limits), which is so small it
 will take an insignificant amount of time to transmit.

  Does it make a difference if there are
  many iframes on a single page, since a users connection will try to
  load all at once, connection speed is split by the number iframes.
  isn't it? Does this increase the danger of running into timeouts?

 Browsers will request at most two resources from the same site
 simultaneously, regardless of how many there are to fetch in total.

 -Nick Johnson
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



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

2009-06-17 Thread codingGirl

I thought the URL lenght limit applies only for URLs typed int he
browsers address bar, doesn't it?

Or does it also apply to the src-URL in an iframe?

On Jun 17, 7:01 pm, Nick Johnson (Google) nick.john...@google.com
wrote:
 On Wed, Jun 17, 2009 at 5:58 PM, codingGirl
 astrid.thuec...@googlemail.comwrote:



  Ok, I know browsers have URL length limits. But I was talking about
  sending data as part of the src=http://myappspot.appspot.com?
  somdata=abcdefg of an iframe. So I was wondering are there limits

  1. how much data I can stuff in that src-URL? I guess there is no
  other way to do it if one uses an iframe.

 That depends on the browser, rather than App Engine. I'm not sure what the
 hard limits are on what common browsers will accept.



  2. are there any time limits while the browser fetches the appengine-
  webpage for the iframe? Will appengine just time out if the src-URL-
  data string is too long so it takes to long to finish the request? How
  long can it take?

 The 30 second request limit only starts after App Engine receives the
 request. At any rate, with a maximum URL length on the order of a few
 kilobytes, even the slowest user is not likely to take more than a second or
 two to transmit the URL!

 -Nick Johnson





  On Jun 17, 12:41 pm, Nick Johnson (Google) nick.john...@google.com
  wrote:
   Hi Astrid,

   On Wed, Jun 17, 2009 at 6:20 AM, astrid.thuec...@googlemail.com 

   astrid.thuec...@googlemail.com wrote:

In general - how much data can I send in an request to the appengine
and be sure it won't time out? Is the amount different between a GET
and POST request?

   Requests are limited to 10MB, and the counter on your request doesn't
  start
   until the entire request has been received.

Another thing is, that I would like to create an iframe and send some
data in the src-URL string:

iframe src=http://myappspot.appspot.com?somdata=abcdefg; ... 

I fear that in special cases there might be many iframes of this type
on a users site and the src-String could be really really long. Does
this mean it would time out?

   The most data you can reliably transfer in a URL is on the order of about
  1k
   (different browsers have different URL-length limits), which is so small
  it
   will take an insignificant amount of time to transmit.

Does it make a difference if there are
many iframes on a single page, since a users connection will try to
load all at once, connection speed is split by the number iframes.
isn't it? Does this increase the danger of running into timeouts?

   Browsers will request at most two resources from the same site
   simultaneously, regardless of how many there are to fetch in total.

   -Nick Johnson

 --
 Nick Johnson, App Engine Developer Programs Engineer
 Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
 368047
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Determine IP or Country of request..?

2009-05-14 Thread codingGirl

Thanks Andy.

so I can find out this info about

1.) info about the visitor of websiteXYZ which embeds our iframe

AND

2.) info about websiteXYZ who embeds our iframe the visitor is
watching

???

Sorry, I am a total beginner. Can you explain in a little more detail
how this is possible...also I am still doubting that 2.) works since
all we have is an iframe in their website. I thought it isn't allowed
to get info - Javascript or otherwise - from the iframe about the
website that embeds it - or am I wrong?



On May 14, 8:04 pm, Andrew Badera and...@badera.us wrote:
 You can use all the javascript you'd like to target window.parent and
 harvest the typical analytical info that's available client-side, and
 to generate requests against a server-side resource.

 As far as geolocating, there are services available that offer
 approximation, but not guarantees.

 Thanks-
 - Andy Badera
 - and...@badera.us
 - Google me:http://www.google.com/search?q=andrew+badera
 - This email is: [ ] bloggable [x] ask first [ ] private

 On Thu, May 14, 2009 at 1:51 PM, astrid.thuec...@googlemail.com

 astrid.thuec...@googlemail.com wrote:

  Hi,

  We offer HTML content generated with a appengine. People can embed
  these via iframes in their website and visitors of their website see
  them.

  My questions is, can I get information about:

  1. the people embedding our iframes
  2. the visitors watching websites where our iframes are embedded

  Perhaps we could get something like a referer for the website that
  embeds the iframe?

  Thanks, Astrid.


--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Using boolean information in the URL string..?

2009-05-14 Thread codingGirl

I already happy if I do not violate any URL syntax specifications by
just writing ishere

Where can I find the specification that says I do it correctly?
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Beginner question: popup window to send emails..?

2009-05-04 Thread codingGirl

It would be have some kind of captcha or question like (82-23 == ?)
people have to answer. Or is this not necessary?
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: transform URL for files from datastore?

2009-04-16 Thread codingGirl

Perhaps somebody on the appengine using this technique in practise
wants to share code examples on how to do it best?
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Remove naked domain from appengine application

2009-04-15 Thread codingGirl

Naked domains are now supported in Google Apps? How? Is there a doku
on how to do it?
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---