[google-appengine] Re: ROR

2008-10-18 Thread Josh Heitzman

Not at present.  Currently only Python is supported.

On Oct 17, 11:54 pm, amshuhu [EMAIL PROTECTED] wrote:
 Its possible Ruby coding in 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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Definition of Google's Infrastructure

2008-10-18 Thread Jon McAlister

Hi Alexander,

This is a pretty neat idea, I like it. Also, it has the advantage of
not being very hard for us to do. You'll notice we already have a read-
only mode in place for datastore maintenance (i.e.
CapabilityDisabledError from 
http://code.google.com/appengine/docs/datastore/exceptions.html).
In the case of catastrophic failures, we could certainly have the
system serve the app from a read-only datacenter. Of course, we will
strive to minimize this as much as possible, but when all write-
capable datacenters are down this is sure better than serving nothing
at all!

Please do file an issue on the tracker and let me know the link.

Cheers,
Jon

On Oct 17, 3:20 pm, Alexander Konovalenko [EMAIL PROTECTED] wrote:
 On Oct 8, 11:17 am, Jon McAlister [EMAIL PROTECTED] wrote:

  Regarding the CDN case is markedly different from the datastore case,
  since you're just dealing with immutable blobs. This is not the thorny
  issue.

 I think I've got an idea. If there is a major problem that takes all
 the servers that are able to serve my app offline, it would be nice if
 the app could still operate in read-only mode from a backup data
 center on another continent.

 Many apps can indeed stay useful in read-only mode. And it might
 significantly alleviate the pain of service disruption for users.

 This looks like a feasible thing to implement. I'll describe it from
 the point of view of a single app. Several backup snapshots of the
 datastore could be continually maintained in remote data centers. The
 snapshots would lag behind the master copy a minute or two (or more),
 so they wouldn't have to be located close to the master copy, which is
 the point.

 When a severe service disruption affecting all master data centers is
 detected, the app's DNS quickly fails over to a backup data center,
 where the app continues to run in read-only mode using the last
 datastore snapshot. The application should detect the read-only mode
 to make sure it doesn't try to write anything to the database and to
 inform the users.

 When the problems have been settled, the app reverts to normal read-
 write mode. Most of the time the old master data center would take
 over. If it has been destroyed or something, one of the backup data
 centers could be manually made the master for this particular app. In
 that case, several minutes worth of data would be lost, but that seems
 acceptable for a complete destruction of the original data centers.

 I don't know whether there are serious holes in this outline, because
 I'm not really a distributed systems guy. Does it make sense?

 Jon, do you think it's worth to file an issue about this?

  -- Alexander
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Works with Chrome but not IE

2008-10-18 Thread GMan

Hi,

I have developed a basic application that uses no javascript.  The
application runs fine on Chrome in the development environment and
deployed on appspot.  However, when I use Internet Explorer - none of
the POST operations work.  They don't seem to even make it to the
webserver.  I push the button and nothing happens.  In the logfile,
there is no record of receiving a POST request.  The GET requests work
fine - I call load a static html page.

When I use the Admin Console from IE, both GET and POST operations
work and are logged.

The application runs flawlessly on Chrome.

Is there a specific minimum version of IE which is supported?  I am
running IE 6, SP3 on WinXP.

Any help is appreciated!!!

Here is an example of the vanilla html code that does not work under
IE.

form method=post action=/
table
tr
td class=paddedbutton class=green
value=draftboard name=submitHead to it/button/td
/tr
tr
td class=paddedbutton value=admin
name=submitAdminister it/button/td
/tr
/table
/form


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Django template version

2008-10-18 Thread Sudhir

Does GAE still come with the django templates v0.96? v1 is out and has
lots of improvements...
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Works with Chrome but not IE

2008-10-18 Thread Paul Kinlan
Hi,

You have two controls with the same name in the same form.

Paul.

2008/10/18 GMan [EMAIL PROTECTED]


 Hi,

 I have developed a basic application that uses no javascript.  The
 application runs fine on Chrome in the development environment and
 deployed on appspot.  However, when I use Internet Explorer - none of
 the POST operations work.  They don't seem to even make it to the
 webserver.  I push the button and nothing happens.  In the logfile,
 there is no record of receiving a POST request.  The GET requests work
 fine - I call load a static html page.

 When I use the Admin Console from IE, both GET and POST operations
 work and are logged.

 The application runs flawlessly on Chrome.

 Is there a specific minimum version of IE which is supported?  I am
 running IE 6, SP3 on WinXP.

 Any help is appreciated!!!

 Here is an example of the vanilla html code that does not work under
 IE.

form method=post action=/
table
tr
td class=paddedbutton class=green
 value=draftboard name=submitHead to it/button/td
/tr
tr
td class=paddedbutton value=admin
 name=submitAdminister it/button/td
/tr
/table
/form


 


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Unable to initialize images API - ImportError: No module named PIL

2008-10-18 Thread Giacecco

Fred's solution is the only one that worked for me. Rather than
copying PIL and PIL.pth, I soft-linked them.

G.

On Oct 16, 12:32 pm, Fred [EMAIL PROTECTED] wrote:
 To get this working on Leopard, I ran the installers as suggested in
 the GAE docs, but I kept on getting the 'ImportError: No module named
 PIL' error message.

 I tried the suggestions listed 
 onhttp://www.p16blog.com/p16/2008/05/appengine-installing-pil-on-os-x-1...
 but this made no difference. So, in the end I simply copied the
 PIL.pth file and PIL directory from /Library/Frameworks/
 Python.framework/Versions/2.5/lib/python2.5/site-packages to /Library/
 Python/2.5/site-packages and this appears to be working OK.

 On Aug 31, 10:36 am, JLD000 [EMAIL PROTECTED] wrote:

 http://jetfar.com/cygwin-install-python-imaging-library/

  This worked for me.  (using Imaging-1.1.6)

  On Jul 7, 1:24 pm, RyanW [EMAIL PROTECTED] wrote:

   I goofed, you're right.  I thought it was the PIL package that was
   causing it to error.  It was actually because I had another
   application listening on port 8080.  Changed the port and it's running
   the service with the PIL error now.

   Still, has anyone gotten PIL to work under cygwin?
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Works with Chrome but not IE

2008-10-18 Thread GMan

Hi,

Good guess but that is actually not the answer as the follow also does
not work:

form method=post action=/
table
tr
td class=paddedbutton class=green
value=draftboard name=submitSomethingHead to it/button/td
/tr
tr
td class=paddedbutton value=admin
name=submitSomethingElseAdminister it/button/td
/tr
/table
/form


What fixes the POST problem is the addition of:
type=submit for each BUTTON.

However, this results in the form being submitted without knowledge as
to which button was pressed.  Here is the code:

form method=post action=/
table
tr
td class=paddedbutton class=green
value=draftboard name=submitSomething type=submitHead to it/
button/td
/tr
tr
td class=paddedbutton value=admin
name=submitSomethingElse type=submitAdminister it/button/td
/tr
/table
/form

Any way to tell which button was pressed?

Thanks


On Oct 18, 12:28 pm, Paul Kinlan [EMAIL PROTECTED] wrote:
 Hi,

 You have two controls with the same name in the same form.

 Paul.

 2008/10/18 GMan [EMAIL PROTECTED]



  Hi,

  I have developed a basic application that uses no javascript.  The
  application runs fine on Chrome in the development environment and
  deployed on appspot.  However, when I use Internet Explorer - none of
  the POST operations work.  They don't seem to even make it to the
  webserver.  I push the button and nothing happens.  In the logfile,
  there is no record of receiving a POST request.  The GET requests work
  fine - I call load a static html page.

  When I use the Admin Console from IE, both GET and POST operations
  work and are logged.

  The application runs flawlessly on Chrome.

  Is there a specific minimum version of IE which is supported?  I am
  running IE 6, SP3 on WinXP.

  Any help is appreciated!!!

  Here is an example of the vanilla html code that does not work under
  IE.

     form method=post action=/
         table
             tr
                 td class=paddedbutton class=green
  value=draftboard name=submitHead to it/button/td
             /tr
             tr
                 td class=paddedbutton value=admin
  name=submitAdminister it/button/td
             /tr
         /table
     /form
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Django helper: ImportError: cannot import name djangoforms

2008-10-18 Thread Giacecco

All,
when trying to use manage.py from the command line, I get the
following error. Running python manage.py is sufficient to get this,
it does not depend on the command after the manage.py.

=
gianfranco-cecconis-macbook-pro:GAPE project giacecco$ python
manage.py
WARNING:root:Could not read datastore data from /var/folders/N8/
N8qeBmGnFqqEQCAHzR9XOk+++TI/-Tmp-/django_giacecco-prod.datastore
WARNING:root:Could not read datastore data from /var/folders/N8/
N8qeBmGnFqqEQCAHzR9XOk+++TI/-Tmp-/django_giacecco-
prod.datastore.history
Traceback (most recent call last):
  File manage.py, line 18, in module
InstallAppengineHelperForDjango()
  File /Users/giacecco/www.giacec.co.uk/GAPE project/__init__.py,
line 441, in InstallAppengineHelperForDjango

  File /Users/giacecco/www.giacec.co.uk/GAPE project/__init__.py,
line 494, in InstallModelForm

  File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/
google/appengine/ext/db/djangoforms.py, line 454, in module
class ModelChoiceField(forms.Field):
  File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/
google/appengine/ext/db/djangoforms.py, line 457, in ModelChoiceField
'invalid_choice': _(u'Please select a valid choice. '
  File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/
django/django/conf/__init__.py, line 147, in first_time_gettext
return gettext(*args)
  File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/
django/django/utils/translation/trans_real.py, line 268, in gettext
_default = translation(settings.LANGUAGE_CODE)
  File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/
django/django/utils/translation/trans_real.py, line 197, in
translation
default_translation = _fetch(settings.LANGUAGE_CODE)
  File /Applications/GoogleAppEngineLauncher.app/Contents/Resources/
GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/
django/django/utils/translation/trans_real.py, line 182, in _fetch
app = __import__(appname, {}, {}, [])
  File /Users/giacecco/www.giacec.co.uk/GAPE project/main.py, line
29, in module
InstallAppengineHelperForDjango()
  File /Users/giacecco/www.giacec.co.uk/GAPE project/__init__.py,
line 441, in InstallAppengineHelperForDjango

  File /Users/giacecco/www.giacec.co.uk/GAPE project/__init__.py,
line 494, in InstallModelForm

ImportError: cannot import name djangoforms
=

I am using Google App Engine Launcher 1.1.5.151 on MacOS 10.5.5. When
launching the web application through it I have no issues, but perhaps
it is not relevant. Any advice? I wanted to use the command line to do
some debugging.

Giacecco

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] storing and rendering comment threads

2008-10-18 Thread jeremy

How would you approach storing and rendering comments in a reddit
like forum? The naive approach i think would be to store comments with
references to their parent comment, then recursively build the forum
tree by retrieving children. I'm sure that would timeout for larger
threads.

One interesting alternative i found was here:
http://github.com/DocSavage/bloog/tree/master/models/blog.py#L137
basically each comment stores it's genealogy in a string, making
comments lexically orderable. But that has a number of limitations -
the genealogy string is limited to 500 bytes so there's suddenly a
maximum thread depth, and the ids may exceed the fixed size padded
space.

At first i thought i could solve this by using list properties to
encode the genealogy - then i realized that datastore lists have weird
set-like sorting :\ .. Not sure whether i can salvage this approach.
Can custom properties define their own sorting rules?

Any suggestions/insights would be great.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: storing and rendering comment threads

2008-10-18 Thread Anthony

You could use ancestors  entity groups to maintain your threading,
not sure how this would impact the overall performance but it makes
querying for children easy. But, this would mean a query with the root
comment as ancestor would pull back all children and all the
children's children etc.. you might not want this so might want to
maintain a depth count and add it to the query maybe?


Or, stick with the lexical path but use the full byte rather than
decimal to store the number.. then just 2 bytes give you a max of 64k
comments per depth and 200+ deep.




On Oct 18, 10:07 pm, jeremy [EMAIL PROTECTED] wrote:
 How would you approach storing and rendering comments in a reddit
 like forum? The naive approach i think would be to store comments with
 references to their parent comment, then recursively build the forum
 tree by retrieving children. I'm sure that would timeout for larger
 threads.

 One interesting alternative i found was 
 here:http://github.com/DocSavage/bloog/tree/master/models/blog.py#L137
 basically each comment stores it's genealogy in a string, making
 comments lexically orderable. But that has a number of limitations -
 the genealogy string is limited to 500 bytes so there's suddenly a
 maximum thread depth, and the ids may exceed the fixed size padded
 space.

 At first i thought i could solve this by using list properties to
 encode the genealogy - then i realized that datastore lists have weird
 set-like sorting :\ .. Not sure whether i can salvage this approach.
 Can custom properties define their own sorting rules?

 Any suggestions/insights would be great.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: HTTPS Support for appspot.com

2008-10-18 Thread fssfans

???

what's going on?

   Console


Unexpected attribute 'secure' for object of type class
'google.appengine.api.ap
pinfo.URLMap'.

  my app.yaml
-

application: fssmain
version: 1
runtime: python
api_version: 1

handlers:

- url: /account/.*
  script: main.py
  login: required
  secure: always

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: ROR

2008-10-18 Thread 拉姆撒之心
thanks
 
 
  
 -- Original -- 
  From: Josh Heitzman[EMAIL PROTECTED];
 Date: 2008年10月18日(星期六) 下午3:43
 To: Google App Enginegoogle-appengine@googlegroups.com; 
 Subject: [google-appengine] Re: ROR

  

Not at present.  Currently only Python is supported.

On Oct 17, 11:54 pm, amshuhu [EMAIL PROTECTED] wrote:
 Its possible Ruby coding in 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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] I can't setting HTTPS

2008-10-18 Thread lyc

this is my app.yaml:

application: fssmain
version: 1
runtime: python
api_version: 1

handlers:

- url: /account/.*
  script: main.py
  login: required
  secure: always


  this is the Console
-
Error parsing yaml file:
Unexpected attribute 'secure' for object of type class
'google.appengine.api.ap
pinfo.URLMap'.
  in fss/app.yaml, line 11, column 11

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Doubts about terms of service

2008-10-18 Thread jaideep.dhok

Hello all,
My apologies if this is not the right forum for my queries. I am
considering app engine to deploy some of my apps, but I am somewhat
confused about the terms of service. I went through the FAQ and ToS,
but couldn't find any answers there. Specifically, I want to know the
following:
1. Can I charge users for the service (app) that I am offering?
2. Currently on the quota  page its written that in future I will be
able to purchase additional resources. Is there anyway to know
approximately when this will happen? It is necessary that my service
is uninterrupted especially if the users are paying money for it.

I will be grateful to any responses.

Regards,
Jaideep

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Are all servers in the cloud up to date?

2008-10-18 Thread [EMAIL PROTECTED]

I've still got the same person who inconsistently runs into the error,
when connecting to the demo at http://gaeutilities.appspot.com/session

The error can be reproduced by this user, but I can not. However, I've
verified in my logs that the error is happening for them. This was a
problem before issue 588 was resolved, which is what leads me to
believe somehow the server he is connecting to the application through
is not up to date.

On Sep 30, 3:51 pm, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 This one: (issue 588)

 http://code.google.com/p/googleappengine/issues/detail?id=588can=5q...

 On Sep 30, 3:34 pm, Marzia Niccolai [EMAIL PROTECTED] wrote:

  Hi,

  Allserverson App Engine are running the sameversionof App Engine, so
  this is not the issue.

  What was the issue fix that you believe fixed this for appengine utilities?

  -Marzia

  On Tue, Sep 30, 2008 at 5:54 AM, [EMAIL PROTECTED] 

  [EMAIL PROTECTED] wrote:

  http://code.google.com/p/appengine-utitlies/issues/detail?id=33

   This issue was recently filed on the appengine-utilities project. This
   problem was actually resolved several updates ago when some changes
   were made for the pickling process. Seeing it happen live now causes
   me to be concerned that not all applicationserversin the cloud are
   getting updated?
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Verify Your Account by SMS failed

2008-10-18 Thread Crane

Hi,

I filled the form to enable my GAE account, but got the message: You
have sent too many SMS verification messages.
What does it mean? Can you give me a help to validate my account?

Thanks,
-Crane


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: I can't setting HTTPS

2008-10-18 Thread Barry Hunter

Are you using the very latest version of the SDK?

On Sat, Oct 18, 2008 at 5:07 AM, lyc [EMAIL PROTECTED] wrote:

 this is my app.yaml:

 application: fssmain
 version: 1
 runtime: python
 api_version: 1

 handlers:

 - url: /account/.*
  script: main.py
  login: required
  secure: always


   this is the Console
 -
 Error parsing yaml file:
 Unexpected attribute 'secure' for object of type class
 'google.appengine.api.ap
 pinfo.URLMap'.
  in fss/app.yaml, line 11, column 11

 




-- 
Barry

- www.nearby.org.uk - www.geograph.org.uk -

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Doubts about terms of service

2008-10-18 Thread Barry Hunter

On Sat, Oct 18, 2008 at 6:28 PM, jaideep.dhok [EMAIL PROTECTED] wrote:

 Hello all,
 My apologies if this is not the right forum for my queries. I am
 considering app engine to deploy some of my apps, but I am somewhat
 confused about the terms of service. I went through the FAQ and ToS,
 but couldn't find any answers there. Specifically, I want to know the
 following:
 1. Can I charge users for the service (app) that I am offering?

I beleive so, havnt seen anything that would forbid that, but I am not
an expert.

Perhaps you could quote the specific bit of the doucment that gives
you doubt that could charge?


 2. Currently on the quota  page its written that in future I will be
 able to purchase additional resources. Is there anyway to know
 approximately when this will happen?

The only thing that Google have said publicly is they hope to have it
by the end of the year.


 It is necessary that my service
 is uninterrupted especially if the users are paying money for it.

 I will be grateful to any responses.

 Regards,
 Jaideep

 




-- 
Barry

- www.nearby.org.uk - www.geograph.org.uk -

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Verify Your Account by SMS failed

2008-10-18 Thread mjshi

I got the same problem.  I clicked a link (something like Report a
problem) on that page and said I didn't receive the SMS, bla bla ...
.  After several days, Google manually enabled my account.  You may
have a try.

On 10月19日, 上午9时39分, Crane [EMAIL PROTECTED] wrote:
 Hi,

 I filled the form to enable my GAE account, but got the message: You
 have sent too many SMS verification messages.
 What does it mean? Can you give me a help to validate my account?

 Thanks,
 -Crane

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] How to delete unused files on app engine

2008-10-18 Thread qubic

I use TinyMCE in my app,when i upload the new version to app engine,it
output:
Error 400: --- begin server output ---
Max number of files and blobs is 1000.
--- end server output ---
How can i delete the old files on 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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Works with Chrome but not IE

2008-10-18 Thread GMan

I have determined that the issue lies within how IE treats the HTML
Tag BUTTON.  It doesn't work correctly.  As such, I have changed the
code to use input type=submit name=submit value=whatever the
button should say/   This resolves the problem on IE.

On Oct 18, 2:21 pm, GMan [EMAIL PROTECTED] wrote:
 Hi,

 Good guess but that is actually not the answer as the follow also does
 not work:

     form method=post action=/
         table
             tr
                 td class=paddedbutton class=green
 value=draftboard name=submitSomethingHead to it/button/td
             /tr
             tr
                 td class=paddedbutton value=admin
 name=submitSomethingElseAdminister it/button/td
             /tr
         /table
     /form

 What fixes the POST problem is the addition of:
 type=submit for each BUTTON.

 However, this results in the form being submitted without knowledge as
 to which button was pressed.  Here is the code:

     form method=post action=/
         table
             tr
                 td class=paddedbutton class=green
 value=draftboard name=submitSomething type=submitHead to it/
 button/td
             /tr
             tr
                 td class=paddedbutton value=admin
 name=submitSomethingElse type=submitAdminister it/button/td
             /tr
         /table
     /form

 Any way to tell which button was pressed?

 Thanks

 On Oct 18, 12:28 pm, Paul Kinlan [EMAIL PROTECTED] wrote:



  Hi,

  You have two controls with the same name in the same form.

  Paul.

  2008/10/18 GMan [EMAIL PROTECTED]

   Hi,

   I have developed a basic application that uses no javascript.  The
   application runs fine on Chrome in the development environment and
   deployed on appspot.  However, when I use Internet Explorer - none of
   the POST operations work.  They don't seem to even make it to the
   webserver.  I push the button and nothing happens.  In the logfile,
   there is no record of receiving a POST request.  The GET requests work
   fine - I call load a static html page.

   When I use the Admin Console from IE, both GET and POST operations
   work and are logged.

   The application runs flawlessly on Chrome.

   Is there a specific minimum version of IE which is supported?  I am
   running IE 6, SP3 on WinXP.

   Any help is appreciated!!!

   Here is an example of the vanilla html code that does not work under
   IE.

      form method=post action=/
          table
              tr
                  td class=paddedbutton class=green
   value=draftboard name=submitHead to it/button/td
              /tr
              tr
                  td class=paddedbutton value=admin
   name=submitAdminister it/button/td
              /tr
          /table
      /form- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---