[google-appengine] Re: Getting host of application..?

2008-11-11 Thread Greg

> Are there more Request attributes I don't know about?

The documentation says...

The Request class inherits from the WebOb Request class. Only some of
the features of the WebOb Request class are discussed here. For more
information, see the WebOb documentation.

The link goes to http://pythonpaste.org/webob/reference.html. I agree
that it is slightly weird going to another site for some
documentation.



--~--~-~--~~~---~--~~
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] When will app engine support multi-encode?

2008-11-11 Thread mawei1981

Hi, All

I use urlfetch to get some content from other hosts, as we know, the
content has multi-encode,

How can I use unicode(response.content,'utf-8') to encode or decode
the content ??




--~--~-~--~~~---~--~~
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] doubt in users

2008-11-11 Thread amshuhu

from google.appengine.api import users

here users is instance following some methods like

users.get_current_user()

users.is_current_user_admin()


and if my users login they need to be gmail users am i right? ,but
here i need to implement that even any mail handling users can able to
to register ,could it possible


Thanks in advance


--~--~-~--~~~---~--~~
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: How to: Variable assignment in django template.

2008-11-11 Thread WalterJJ

Setting a context variable in a custom template tag:
http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#setting-a-variable-in-the-context

On 11 nov, 11:19, WalterJJ <[EMAIL PROTECTED]> wrote:
> Just brainstorming:
> maybe writing a custom tag?  
> http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#a-qu...
>
> Best regards,
> Walter
>
> On 11 nov, 10:10, Blessed Geek <[EMAIL PROTECTED]> wrote:
>
> > Rather, what I meant is
>
> > I know what I want to do. Without going into details of what I need to
> > do just tell me in sufficient details:
> > How can I perform variable assignment in django template?
>
> > Your help and your tolerance of my short attitude is greatly
> > appreciated. I really need an answer precise to the question.
--~--~-~--~~~---~--~~
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] BadValueError: Property age must be an int or long, not a unicode

2008-11-11 Thread Toney

I have an html form that has two fields, fname and age.  I have one
Model as a string and the other as a integer.  When I try to submit
the form I get the error...

BadValueError: Property age must be an int or long, not a unicode

Can anyone tell me what I may be missing.

note if I remove the age field or set it's property to string the form
saves and the data displays with no errors, however I will want in the
future to be able to perform searches based integer and date.

class Greeting(db.Model):
  fname = db.StringProperty()
  age = db.IntegerProperty()

class Guestbook(webapp.RequestHandler):
  def post(self):
greeting.fname = self.request.get('fname')
greeting.age = int(self.request.get('age'))

--~--~-~--~~~---~--~~
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: When will app engine support multi-encode?

2008-11-11 Thread admin go2
Yes, you can do it if the page content is encoded by utf8.
response.content.decode( 'utf-8' )


Welcom to  go2.appspot.com, a fast proxy server.



2008/11/11 mawei1981 <[EMAIL PROTECTED]>

>
> Hi, All
>
> I use urlfetch to get some content from other hosts, as we know, the
> content has multi-encode,
>
> How can I use unicode(response.content,'utf-8') to encode or decode
> the content ??
>
>
>
>
> >
>

--~--~-~--~~~---~--~~
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: cannot import name memcache

2008-11-11 Thread Marzia Niccolai
Hi,

What version of the SDK are you using?  For using Memcache, you must have
1.1.0 or higher installed.  What is the operating system?  And your
PYTHONPATH.

-Marzia

On Mon, Nov 10, 2008 at 10:33 PM, syahreza.octadian <
[EMAIL PROTECTED]> wrote:

>
> Dear all..
>
> i have some problem while import memcache, any one could tell me???
>
>
> this is the error detail.
>
>  Python 2.5.1: /usr/bin/python
> Tue Nov 11 06:27:15 2008
>
> A problem occurred in a Python script. Here is the sequence of
> function calls leading up to the error, in the order they occurred.
>  /media/sda6/google_appengine/google/appengine/tools/dev_appserver.py
> in
>
> _HandleRequest(self= instance at 0x856304c>)
>  2243   infile,
>  2244   outfile,
>  2245   base_env_dict=env_dict)
>  2246 finally:
>  2247
> self.module_manager.UpdateModuleFileModificationTimes()
> base_env_dict undefined, env_dict = {'REMOTE_ADDR': '127.0.0.1',
> 'REQUEST_METHOD': 'GET', 'SERVER_NAME': 'localhost', 'SERVER_PORT':
> '8080', 'SERVER_PROTOCOL': 'HTTP/1.0', 'SERVER_SOFTWARE': 'Development/
> 1.0'}
>  /media/sda6/google_appengine/google/appengine/tools/dev_appserver.py
> in
> Dispatch(self= object at 0x855bd2c>, relative_url='/', path=None,
> headers=,
> infile=,
> outfile=,
> base_env_dict={'REMOTE_ADDR': '127.0.0.1', 'REQUEST_METHOD': 'GET',
> 'SERVER_NAME': 'localhost', 'SERVER_PORT': '8080', 'SERVER_PROTOCOL':
> 'HTTP/1.0', 'SERVER_SOFTWARE': 'Development/1.0'})
>  332 infile,
>  333 outfile,
>  334 base_env_dict=base_env_dict)
>  335
>  336   return
> base_env_dict = {'REMOTE_ADDR': '127.0.0.1', 'REQUEST_METHOD': 'GET',
> 'SERVER_NAME': 'localhost', 'SERVER_PORT': '8080', 'SERVER_PROTOCOL':
> 'HTTP/1.0', 'SERVER_SOFTWARE': 'Development/1.0'}
>  /media/sda6/google_appengine/google/appengine/tools/dev_appserver.py
> in Dispatch(self= object at 0x855f6ac>, relative_url='/', path='meeetask.py',
> headers=,
> infile=,
> outfile=,
> base_env_dict={'REMOTE_ADDR': '127.0.0.1', 'REQUEST_METHOD': 'GET',
> 'SERVER_NAME': 'localhost', 'SERVER_PORT': '8080', 'SERVER_PROTOCOL':
> 'HTTP/1.0', 'SERVER_SOFTWARE': 'Development/1.0'})
>  1741  infile,
>  1742  outfile,
>  1743  self._module_dict)
>  1744   handler.AddDebuggingConsole(relative_url, env, outfile)
>  1745 finally:
> self =  0x855f6ac>, self._module_dict = {'codecs':  lib/python2.5/codecs.pyc'>, 'encodings':  usr/lib/python2.5/encodings/__init__.pyc'>, 'encodings.aliases':
>  aliases.pyc'>, 'encodings.ascii':  lib/python2.5/encodings/ascii.pyc'>, 'encodings.utf_8':  'encodings.utf_8' from '/usr/lib/python2.5/encodings/utf_8.pyc'>,
> 'google':  __init__.pyc'>, 'google.appengine':  media/sda6/google_appengine/google/appengine/__init__.pyc'>,
> 'google.appengine.api':  sda6...gle_appengine/google/appengine/api/__init__.pyc'>,
> 'google.appengine.api.api_base_pb':  'google.appengine.api.api_base_pb' from ..._appengine/google/appengine/
> api/api_base_pb.pyc'>, 'google.appengine.api.apiproxy_stub_map':
>  appengine/api/apiproxy_stub_map.pyc'>, ...}
>  /media/sda6/google_appengine/google/appengine/tools/dev_appserver.py
> in ExecuteCGI(root_path='/home/uhbun/.workspace/google-appengine/src/
> meeeTask', handler_path='meeetask.py', cgi_path='/home/
> uhbun/.workspace/google-appengine/src/meeeTask/meeetask.py',
> env={'AUTH_DOMAIN': 'gmail.com', 'CONTENT_LENGTH': '', 'CONTENT_TYPE':
> 'application/x-www-form-urlencoded', 'GATEWAY_INTERFACE': 'CGI/1.1',
> 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/
> xml;q=0.9,*/*;q=0.8', 'HTTP_ACCEPT_CHARSET':
> 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'HTTP_ACCEPT_ENCODING':
> 'gzip,deflate', 'HTTP_ACCEPT_LANGUAGE': 'en-us,en;q=0.5',
> 'HTTP_CONNECTION': 'keep-alive', 'HTTP_COOKIE':
> 'sessionid=2f58ac632d7728a4f34ab53d937dc23e;
> dev_appserver_login="[EMAIL PROTECTED]:False"', ...},
> infile=,
> outfile=,
> module_dict={'codecs':  codecs.pyc'>, 'encodings':  python2.5/encodings/__init__.pyc'>, 'encodings.aliases':  'encodings.aliases' from '/usr/lib/python2.5/encodings/aliases.pyc'>,
> 'encodings.ascii':  encodings/ascii.pyc'>, 'encodings.utf_8':  from '/usr/lib/python2.5/encodings/utf_8.pyc'>, 'google':  'google' from '/media/sda6/google_appengine/google/__init__.pyc'>,
> 'google.appengine':  google_appengine/google/appengine/__init__.pyc'>,
> 'google.appengine.api':  sda6...gle_appengine/google/appengine/api/__init__.pyc'>,
> 'google.appengine.api.api_base_pb':  'google.appengine.api.api_base_pb' from ..._appengine/google/appengine/
> api/api_base_pb.pyc'>, 'google.appengine.api.apiproxy_stub_map':
>  appengine/api/apiproxy_stub_map.pyc'>, ...}, exec_script= ExecuteOrImportScript at 0x855480c>)
>  1652 logging.debug('Executing CGI with env:\n%s',
> pprint.pformat(env))
>  1653 try:
>  1654   reset_modules = exe

[google-appengine] Re: How to: Variable assignment in django template.

2008-11-11 Thread Blessed Geek

Rather, what I meant is

I know what I want to do. Without going into details of what I need to
do just tell me in sufficient details:
How can I perform variable assignment in django template?

Your help and your tolerance of my short attitude is greatly
appreciated. I really need an answer precise to the question.
--~--~-~--~~~---~--~~
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] Group Welcome & Read Me

2008-11-11 Thread Marce (Google)

Hi,

Welcome to the Google App Engine developer forum.

Before posting you may want to read our user maintained App Engine
Community FAQ: 
http://knol.google.com/k/marce/app-engine-community-faqs/vkzeph4si12v/1#.
These are questions written and maintained by the group's members. If
you get a great answer to your question, consider adding it to the
FAQ!

* Submitting Questions *

We love to answer your questions, and there are somethings you can do
to improve the response time and completeness.  Search the group to
see if anyone has posted a similar issue.  Include information on the
expected behavior and what you are seeing instead, stack traces are
always great, and so is the code that produces them.  It can also be
helpful to see if you can find the minimal amount of code that
reproduces the issue, so we can pinpoint the issue faster.

* The Issue Tracker *

With App Engine, you can file feature requests and issues in our issue
tracker: http://code.google.com/p/googleappengine/issues/list

Before submitting an issue, search to see if it already exists.  If
so, star the issue, and add any more relevant information you might
have.  Please don't add +1 to the issue, as everytime a comment is
added, it emails the people who have starred the issue.

Once the issue is filed, we will triage the issue.  We categorize all
of our issues as either 'Features' or 'Defects'.

A feature indicates that it is working as we expect it to, and the
request is asking for an enhancement or modification to the current
behavior. Once we have read a feature we will change the status from
'New' to 'Acknowledged', indicating that we have read this request.
This does not indicate that the feature is being, or will ever be,
implemented.  If it is clear a feature will never be implemented, we
will mark it as 'WontFix'.  Once a feature is implemented, it will be
marked as 'Fixed'.

A defect is when a feature of App Engine doesn't behave in the
documented or expected fashion. Once we confirm the defect, we will
change the status from 'New' to 'Accepted'.  You can propose a fix for
the issue by following the guidlines listed here:
http://groups.google.com/group/google-appengine/web/how-to-submit-a-patch-to-the-sdk.
Once the fix is live in both App Engine and the SDK we will mark the
issue as 'Fixed'.  Any known work arounds or need for clarification
will be posted by directly in the issue.

We do not currently set the 'priority' field in the App Engine issue
tracker.  Also, on some features and defects we may include the
'Component' to which the issue belongs.

* Ways to Contribute *

App Engine Cookbook - If you have a creative solution to a common
problem, why not share it with all of us? You can submit recipes with
code snippets at http://appengine-cookbook.appspot.com/ . Discuss and
vote on recipes which you find helpful or suggest improvements. The
cookbook is a great resource for finding ways to handle common design
challenges.

App Engine Open Source Projects Page - If you are working on an Open
Source App Engine project, or you are looking to contribute to one,
checkout our Open Source projects page:
http://groups.google.com/group/google-appengine/web/google-app-engine-open-source-projects

App Gallery - After you have developed your killer App Engine app,
submit it to our App Gallery: http://appgallery.appspot.com/

Articles - We've already published a couple of user submitted articles
with our Documentation at http://code.google.com/appengine/articles/.
If you have written, or want to write, a how-to article for App
Engine, please email [EMAIL PROTECTED] for more information.  All
articles must be published under the Creative Commons license.

Patches - If you have a fix for a problem in the SDK you can always
submit a patch by following the directions here:
http://groups.google.com/group/google-appengine/web/how-to-submit-a-patch-to-the-sdk

- Marzia & The App Engine Team
--~--~-~--~~~---~--~~
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: Comparing entities

2008-11-11 Thread Andy Freeman

e1 and e1 are not datastore entities.  They are python instances of
subclasses of db.Model.  (The initial contents of these instances was
copied from the datastore but they may be changed subsequenty, changes
which do not affect each other or the datastore, unless you've done
something specific to make that happen).  Python instances can be
modified in a variety of ways.  The only way to modify datastore
entities is via {instance}.put() or db.put({instances}).)

Absent any other information, different class instances are different,
aka !=, even if they happen to have the same contents.  (Default
equality for class instances is by identity, not by content equality.)

You are, of course, free to define comparison methods between python
class instances.

Note that if you do e1.a = 7 and e2.a = 8, that is make the contents
different, e1.key() still == e2.key().

On Nov 8, 8:36 pm, jmay <[EMAIL PROTECTED]> wrote:
> It appears that entities cannot be compared directly:
>
>   e1 = MyEntity.get('longkeystringhere')
>   e2 = MyEntity.get('samekeystringhere')
>
> "e1 == e2" will return False even if identical keys are provided.
>
> But 'e1.key() == e2.key()' returns True.
>
> So to compare entities you must compare the keys.  I couldn't find
> this mentioned in the GAE docs.  Is this behavior intentional?
> Desirable?  It seems to me that comparing two entities ought to be the
> same as comparing the keys.
>
> -Jason
--~--~-~--~~~---~--~~
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] 500 server error

2008-11-11 Thread sevenlocket

I made a stupid mistake. On my local source code folder I delete a
python file A.py but leave the 'from A import ...' clause in code. It
still runs perfectly on local. But after I deploy it, GAE just give me
the big 500 server error page. It waste me half an hour to find out.
Obviously GAE compile the code right alter upload.
maybe you will be in same situation

--~--~-~--~~~---~--~~
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: rough draft of a FAQ for this group

2008-11-11 Thread Marzia Niccolai
Hi,

Sorry it has taken so long to respond.  I set up a knol using the text you
provided.  You and others can contribute to the knol, it's open to be edited
by any signed in user.

http://knol.google.com/k/marce/app-engine-community-faqs/vkzeph4si12v/1#

Thank you *so* much for getting this started.

-Marzia

On Mon, Nov 3, 2008 at 10:40 AM, Peter Recore <[EMAIL PROTECTED]> wrote:

>
> I was hoping if we could build the document up to a decent level of
> quality, it might get stickied on the first page of this group.  Maybe
> I'm cynical, but I suspect there are a lot of people who come to the
> group and post *before* looking at any documentation anywhere.  So
> while a knol or wiki page is a better interface for editing/managing a
> faq it wouldn't be in people's faces quite as much.  Maybe we could
> use a wiki as the official repository of info, and post it to the
> group ever so often.
>
> On Nov 3, 4:02 am, Jon McAlister <[EMAIL PROTECTED]> wrote:
> > Thanks for the suggestions, Barry, David, and Alexander! We are taking
> > them under advisement.
> >
> > On Nov 3, 7:02 am, Alexander Kojevnikov <[EMAIL PROTECTED]>
> > wrote:
> >
> > > > Hi Alexander, I agree with you. What exactly did you have in mind?
> >
> > > It can be any wiki, appengine-hosted or not, as long as:
> >
> > > 1. It's public and editable by anyone.
> > > 2. Linked from the official docs. I agree with Barry, it has very
> > > little sense to have this FAQ if it's hard to find.
> >
> > > May be we can start with a simple Google Groups Page and see how it
> > > goes?http://groups.google.com/support/bin/topic.py?topic=9252
> >
>

--~--~-~--~~~---~--~~
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: Google App Engine Roadmap - Now Published

2008-11-11 Thread Blessed Geek

I tolerate javascript. I am also tolerating python.

GTK is a huge gift from google because I have become too used to to
decipher problems from cryptic java compilation logs. Familiarity
breeds contempt - contempt for the ways others do their programming.
It's hard for me to work with scripting languages because I don't want
to memorise all the pitfalls to avoid. I want the compiler to tell me
that my syntax is wrong and depend as little as possible on tracing
the output of a debugger to verify my syntax. Debugging is for
verifying logic not syntax.

Programmers who are deeply involved in PHP, python or perl find it
difficult to empathize with the attitude of the java or c++ programmer
- precision of syntax and logic. It was a huge relieve to move away
from Perl into java. GTK provides a similarly huge relief for me to
code with as little javascript as possible. We don't want to muck
around with uncertainties.

Basing app engine on a derivative of java is better than continuing
the development on python. Use of python as the initial platform was a
smart choice - for a beta test-out of the app engine concept. But as
complexity of the product grows, it's time to base it on a language
that offers more precise behaviour.

Invariably, we write quick and dirty rapid developments in perl or
python with lots of javascript to show customers a working concept. As
soon as they like it, we quickly move it into java and gtk, rather
than depend on the imprecision and lack of discipline of scripting
languages and the huge amount of mental interest needed to debug and
maintain such scripts. To free us to focus on more complex issues such
as synchronicity and security.


--~--~-~--~~~---~--~~
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: How to: Variable assignment in django template.

2008-11-11 Thread yejun



> Cannot be done? Then django is lousy. If so, could someone point me to
> a better python template technology?

Mako template can include any arbitrary python code.


--~--~-~--~~~---~--~~
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] service to regularly access a URL?

2008-11-11 Thread [EMAIL PROTECTED]

Hello,
 I am writing a GAE tutorial, and I have arrived at a point where I
would like to mention a way to do something regularly (cron-like, if
you will). For my own needs, it is very easy to set up a cron job on a
local Linux box that runs wget every day (or every hour). But this is
not a solution I can propose for my (not very technical) users - it is
not guaranteed that they have access to a Linux/Unix/MacOS box, I
don't want to explain the syntax of chron etc. etc.

 So I was wondering, there should be out there some service (free or
not) that will do exactly this: access a URL regularly. What happens
with the result is not so important - it could be mailed, stored or
thrown away.

 Do you guys know of any such thing? I realize this is part of the
cron-like behavior FAQ, but I can't find an answer.

 thank you,

   Walter
--~--~-~--~~~---~--~~
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: BadValueError: Property age must be an int or long, not a unicode

2008-11-11 Thread Marzia Niccolai
Hi Toney,

This should work, and in fact I have not been able to replicate the issue
using a small test example.  Would it be possible to provide the actual code
you are running?

-Marzia

On Tue, Nov 11, 2008 at 6:43 AM, Toney <[EMAIL PROTECTED]> wrote:

>
> I have an html form that has two fields, fname and age.  I have one
> Model as a string and the other as a integer.  When I try to submit
> the form I get the error...
>
> BadValueError: Property age must be an int or long, not a unicode
>
> Can anyone tell me what I may be missing.
>
> note if I remove the age field or set it's property to string the form
> saves and the data displays with no errors, however I will want in the
> future to be able to perform searches based integer and date.
>
> class Greeting(db.Model):
>  fname = db.StringProperty()
>  age = db.IntegerProperty()
>
> class Guestbook(webapp.RequestHandler):
>  def post(self):
>greeting.fname = self.request.get('fname')
>greeting.age = int(self.request.get('age'))
>
> >
>

--~--~-~--~~~---~--~~
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: doubt in users

2008-11-11 Thread Alexander Kojevnikov

> and if my users login they need to be gmail users am i right? ,but
> here i need to implement that even any mail handling users can able to
> to register ,could it possible

Not necessary Gmail, but they need a Google account:
http://en.wikipedia.org/wiki/Google_Account

If you don't want to use Google accounts, there are alternatives.
Search this group for "user authentication".

--
www.muspy.com
--~--~-~--~~~---~--~~
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: Auth Options

2008-11-11 Thread Jon McAlister

Hi Dylan,

You should create a new app here.

Jon

On Nov 9, 1:46 pm, Dylan Lorimer <[EMAIL PROTECTED]> wrote:
> Hi GAE Team -
>
> So sadly I made a wrong choice when it comes to Google domain
> authentication, and I see that there is no way to switch it. I meant
> to enforce an apps-for-domain only authentication and instead chose
> the standard anyone with a google login can authenticate.
>
> Question: is it o the roadmap to support changes to this for existing
> apps? Debating whether I need to create a new app with the right auth
> option or just sit this out until the option is available.
>
> Cheers,
> dylan
--~--~-~--~~~---~--~~
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: How to: Variable assignment in django template.

2008-11-11 Thread Mahmoud

Here are some things you can do:
1. Django templates can tell you the value of the current counter/
index in the 'for' loop. Maybe you can use that somehow.
2. If you really want to assign a variable, then use a javascript tag:

var x = {{greeting.content}};


-Mahmoud

On Nov 11, 7:59 am, Blessed Geek <[EMAIL PROTECTED]> wrote:
> > ...but it does not mean it's "lousy". Could you elaborate what you are
> > trying to do? There's a good chance there's an alternative solution.
>
> "Please tell us what you want to do and may be there's a better
> solution" is a familiar answer we give to newbies in java.
>
> Please accept my apologies for being short in politeness and words.
>
> I know what I want to do. Without going into details just tell me:
> How can I perform variable assignment in django template?
>
> If django is incapable, recommend me an alternate python template
> (which works with google apps) that would allow me to do so.
--~--~-~--~~~---~--~~
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: www.*.appspot.com

2008-11-11 Thread Jon McAlister

That sounds like a reasonable request to me, please file an issue:
http://code.google.com/p/googleappengine/issues/list

On Nov 9, 6:22 pm, MajorProgamming <[EMAIL PROTECTED]> wrote:
> I noticed that www.*.appspot.com (where * is the subdomain that you
> picked) doesn't work. Is there any reason for this? It would make
> sense to have both options for those of our users who don't know any
> better (and prefix all urls with www).
>
> by the way, blogspot does support www...
--~--~-~--~~~---~--~~
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] property auto indexes

2008-11-11 Thread Ben Nevile

Howdy pardners,

I have a busy (40 req/sec) app that is occasionally throwing Timeout
errors on datastore operations.  I'm not sure what the cause of these
errors is - contention perhaps? - but in an effort to reduce the
amount of data being written, I want to confirm my understanding of
the put() operation.

Given the following model,

class Listening(db.Model):
  listener =
db.ReferenceProperty(User,collection_name="listening_to_set")
  listenee =
db.ReferenceProperty(User,collection_name="being_listened_to_set")
  created_at = db.DateTimeProperty(auto_now_add=True)


and assuming that no custom indexes have been defined, is it true that
a put() operation will write the entity to three different places?
(indexed on listener, indexed on listenee and indexed on created_at)

I am in the habit of sprinkling non-essential "created_at" properties
throughout my models, but I'm suspecting now that this carries
significantly more burden on the GAE datastore relative to MySQL.  Any
insight?

Ben
--~--~-~--~~~---~--~~
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] Implementing multi-user security within a single app

2008-11-11 Thread sal


I'm researching this a bit and haven't found much yet: was hoping
maybe someone here had any ideas:

Assume my app is multi-user.  Users sign in and have accounts - they
use my application like a Wiki to build web sites, and are allowed to
imbed Python / scripting into their pages.  Is there a way for me to
restrict them to using a certain Python API/APIs / or somehow prevent
them from touching any data in the Datastore? For example other user's
profile data will be in the Datastore, users having Python access
could 'hack into' or 'corrupt' this data if they were given access to
put Python code on the server.

Secondly - I'm looking for a way to create quotas 'per user', so each
user is only allowed so much traffic to his own Wiki, and allowed only
so much Database activity, so as not to eat up other users' quotas, or
use the quota for the whole app.  Any ideas how to deal with this?  I
am thinking I will have to track all requests manually and block them
if they exceed a certain amount... was wondering if there was a
simpler way.

Thanks much in advance for any help,
--~--~-~--~~~---~--~~
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: get_by_id for subclasses

2008-11-11 Thread Craig

Thanks Marzia. For now I've got a method that loops over the possible
classes looking for the one with the ID I'm after:

def get_entry(id):
for c in [ TextEntry, BinaryEntry, Entry ]:
entry = c.get_by_id(id)
if entry != None:
return entry
return entry

Although not the most efficient way of doing it, it seems to work.

Craig
--~--~-~--~~~---~--~~
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: get_by_id for subclasses

2008-11-11 Thread yejun

I don't think id is unique among different kinds or entity groups. I
could be wrong though.

On Nov 11, 3:36 pm, Craig <[EMAIL PROTECTED]> wrote:
> Thanks Marzia. For now I've got a method that loops over the possible
> classes looking for the one with the ID I'm after:
>
>     def get_entry(id):
>         for c in [ TextEntry, BinaryEntry, Entry ]:
>             entry = c.get_by_id(id)
>             if entry != None:
>                 return entry
>         return entry
>
> Although not the most efficient way of doing it, it seems to work.
>
> Craig
--~--~-~--~~~---~--~~
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: reference property and pickle

2008-11-11 Thread gops

In my application i frequently need "userpreference". So I am
memcacheing it using pickle.

Now , userpreference model have one entity called teampreference ,
which is a reference property to the teampreference.

I can now using teampreference easily. But Not sure weather it is
coming from memory or google app engine is fetching it behind the
scene ?..

I hope this helps to understand the scenario.

On Nov 11, 5:50 pm, Jonk <[EMAIL PROTECTED]> wrote:
> On 11 marras, 14:22, gops <[EMAIL PROTECTED]> wrote:
>
> > suppoe i have one model
>
> > ie.
>
> > class A(db.model):
> >    bla = db.ReferenceProperty(B)
>
> > and i pickle.dump it , will it also store/return the whole data of B
> > or just the key ?
>
> > i.e. if I latter pickle.loads it , will I have a full B ( so that
> > there won't any datastore query happen) ? or just the key and whenever
> > i access it it need to fetch it ?
>
> Hi.
>
> I'm interested in why would you want to do such a thing; can you shed
> some light on this?
>
>     jK
--~--~-~--~~~---~--~~
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] Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marce (Google)

Hi,

This is just a reminder that this evening from 5-6pm PST, you will not
be able to deploy new application versions.  More details can be found
here:
http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/25c9c6fdfe4561f5

Also, a reminder that all notifications of App Engine downtime,
planned or otherwise, can be found on the Downtime Notify group:
http://groups.google.com/group/google-appengine-downtime-notify/

-Marzia
--~--~-~--~~~---~--~~
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] reference property and pickle

2008-11-11 Thread gops

suppoe i have one model

ie.

class A(db.model):
   bla = db.ReferenceProperty(B)

and i pickle.dump it , will it also store/return the whole data of B
or just the key ?

i.e. if I latter pickle.loads it , will I have a full B ( so that
there won't any datastore query happen) ? or just the key and whenever
i access it it need to fetch 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: How to: Variable assignment in django template.

2008-11-11 Thread Alexander Kojevnikov

> How to perform var assignment in django template?

Django templates don't support variable assignments...

> Cannot be done? Then django is lousy. If so, could someone point me to
> a better python template technology?

...but it does not mean it's "lousy". Could you elaborate what you are
trying to do? There's a good chance there's an alternative solution.
--~--~-~--~~~---~--~~
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: reference property and pickle

2008-11-11 Thread oblivion

from what I have observed, references are pickled as keys - something
along the lines of datastore_types.Key.from_path('',
, _app=u'')

--~--~-~--~~~---~--~~
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: Microsoft Azure

2008-11-11 Thread Filip

It seems to me that Windows Azure is a direct challenge for GAE. At
equal capabilities and pricing, it would be a hard sell to tell any
corporate user that they need to use a Google platform over a
Microsoft platform

Now, if you are building a customer facing application from scratch,
that doesn't matter. If you intend to be an ISV to businesses, the
mere perception makes the difference.

There is also the explicit statement from Microsoft that they will
make it easier to do aggregates over distributed databases, which is
the core of any reporting tool. They also said they aim to make
analytics possible over time. The industry might find that credible,
since Microsoft did it before with SQL Server and is "simply" running
a distribution layer over SQL Server. Not a trivial problem, but
perhaps a lesser problem than the one Google is facing. It hand has to
come up with a scheme that allows Big Table to expand to areas it was
not intended for, and in particular the ability to query data on any
set of parameter, and summing/counting the results. Maybe this
underdog position and clean slate allows Google to find new ways, more
search-based, ultimately easier to use. I truely hope so. Meanwhile,
Azure is not really yet available.

Filip.

On Oct 27, 8:16 pm, "Andrew Badera" <[EMAIL PROTECTED]> wrote:
> So, what's the GAE take on the MS Azure announcement at PDC today?
>
> Is it going to be competitive, or not even in the same ballpark?
>
> Will it force the GAE team to spend extra effort on a .NET implementation
> for GAE?
>
> Thanks-
> - Andy Badera
> - [EMAIL PROTECTED]
> - (518) 641-1280
>
> -http://higherefficiency.net/
> -http://changeroundup.com/
>
> -http://flipbitsnotburgers.blogspot.com/
> -http://andrew.badera.us/
>
> - Google me:http://www.google.com/search?q=andrew+badera
--~--~-~--~~~---~--~~
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: reference property and pickle

2008-11-11 Thread Andy Freeman

The answer depends on whether you have accessed the B instance through
bla (or wrote an instance into it).

Aor example, right after "a = A.get(key)", pickling a will not pickle
the B referenced by a.bla.

Moreover, after you do "a.bla = {B instance}.key()", pickling a will
not pickle the B referenced by bla.

However, after you do "a.bla = {B instance}", pickling a will pickle
the B referenced by bla.

And, after you do "None == a.bla" or reference "a.bla.b_field",
pickling a will pickle the B referenced by bla.




On Nov 11, 4:22 am, gops <[EMAIL PROTECTED]> wrote:
> suppoe i have one model
>
> ie.
>
> class A(db.model):
>    bla = db.ReferenceProperty(B)
>
> and i pickle.dump it , will it also store/return the whole data of B
> or just the key ?
>
> i.e. if I latter pickle.loads it , will I have a full B ( so that
> there won't any datastore query happen) ? or just the key and whenever
> i access it it need to fetch 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: counter use pattern

2008-11-11 Thread Bill

I probably should've piped up on the thread earlier.  I'm currently
looking at yejun's fork and will merge pending some questions I have
on his optimizations.

Here's one:
My old code stored the counter name in each shard so I could get all
shards with a single fetch.  If you have 20 shards, you could have any
number of actually created shards.  In a very high transaction system,
probably all 20 shards exist.
In yejun's optimization, he's iterating through each shard using
get_by_key_name and checking if it exists.  Which is likely to be
faster?

A nice optimization by yejun is making count a TextProperty.  This
will prevent indexing and would probably save some cycles.

Josh, you said "lines 144-145 should be under the try: on line 137.
That way, the delayed counter count won't get reset to zero even in
the case of a failed transaction."

I thought any datastore errors are handled via the db.Error exception
which forces a return before the delayed counter count is reset.
(db.Error is defined in appengine/api/datastore_errors.py)

On Josh's memcached buffering scheme, I can definitely see the utility
if you're willing to sacrifice some reliability (we're down to one
point of failure -- memcache) for possibly a lot of speed.  Using
memcache buffers for counters makes sense because it's easy to
accumulate requests while for other model puts, like comments or other
text input, the amount of memcache buffer could grow pretty large
quickly.

Does it make sense to use a sharded backend to a memcache buffer?
Depends on the frequency of the final datastore writes, as mentioned
above.  (I'm not as concerned with complexity as yejun because I think
this buffering is reasonably simple for counters.)   So I think this
would be a good thing to add onto the sharded counter code through a
fork.  Then people who want that kind of speed can opt for it.

-Bill




--~--~-~--~~~---~--~~
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: How to: Variable assignment in django template.

2008-11-11 Thread Blessed Geek


> ...but it does not mean it's "lousy". Could you elaborate what you are
> trying to do? There's a good chance there's an alternative solution.

"Please tell us what you want to do and may be there's a better
solution" is a familiar answer we give to newbies in java.

Please accept my apologies for being short in politeness and words.

I know what I want to do. Without going into details just tell me:
How can I perform variable assignment in django template?

If django is incapable, recommend me an alternate python template
(which works with google apps) that would allow me to do so.
--~--~-~--~~~---~--~~
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] create an application

2008-11-11 Thread jun

hello, I would like to create another application in google app
engine. It keeps on saying to verify thru SMS, but it has already been
verified before. how do I go about this?

--~--~-~--~~~---~--~~
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: Google App Engine Hackathon: Atlanta

2008-11-11 Thread nburger

Are there any plans to expand enrollment for the Atlanta Hack-a-thon?
I'd really like to attend, but it seems that the event is already
full.

Norbert

On Oct 23, 11:41 pm, Harpal <[EMAIL PROTECTED]> wrote:
> 15th Nov 2008 - Google App Engine Hackathon:Atlanta
>
> Please join us on 15th Nov 2008 for a Google App Engine Hack-a-thon inAtlanta.
>
> - Learn about Google App Engine
>
> The events will include training on the major features of Google App
> Engine, including data modeling, the App Engine APIs, some aspects of
> Django, and how to mashup App Engine with other web services. Google
> Engineers and Product Managers will be on hand to help and to answer
> questions throughout the day.
>
> - Build With Us, or Build Your Own
>
> Throughout the day, we will be building a complete App Engine
> application, and sharing the code with you so you can code along with
> us. If, on the other hand, you already have a great idea for what to
> build, bring that idea with you to the hackathon. Even better, bring
> along anything you can prepare ahead of time (sketches, designs, web
> page mock ups, etc.) and use the time and information provided to
> develop your idea into a working application, then share it with the
> world.
>
> At the end of the day, we'll invite you to share your App Engine
> applications with the group.
>
> - What Do I Need?
>
> We will provide facilities, power, food, refreshments and experts to
> help you learn to use Google App Engine and write your application.
> Just bring your laptops, ideas and enthusiasm to complete the mix.
>
> - When and Where?
>
> TheAtlantahack-a-thon will take place Saturday 15th Nov 2008 from
> 10AM-6PM. It will be held at GoogleAtlantain Millennium at Midtown,
> 10 10th Street NE, Suite 600,Atlanta, GA 30309
>
> Space is limited so Sign Up 
> now:http://sites.google.com/site/gaehackathonatlanta/registration

--~--~-~--~~~---~--~~
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: www.*.appspot.com

2008-11-11 Thread Giovanni Novelli
There is an accepted issue about such problem:
http://code.google.com/p/googleappengine/issues/detail?id=768

2008/11/11 Jon McAlister <[EMAIL PROTECTED]>

>
> That sounds like a reasonable request to me, please file an issue:
> http://code.google.com/p/googleappengine/issues/list
>
> On Nov 9, 6:22 pm, MajorProgamming <[EMAIL PROTECTED]> wrote:
> > I noticed that www.*.appspot.com (where * is the subdomain that you
> > picked) doesn't work. Is there any reason for this? It would make
> > sense to have both options for those of our users who don't know any
> > better (and prefix all urls with www).
> >
> > by the way, blogspot does support www...
> >
>

--~--~-~--~~~---~--~~
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: counter use pattern

2008-11-11 Thread yejun

Every operation by transferring value between memcache and datastore
is a non atomic operation. The original design is cache value from
datastore to memcache. The equivalent implementation is just throwing
random exception from the transaction.

I feel the non sharded counter plus a memcache will be more robust
solution.

Because a reasonable frequency update from memcache to datastore
completely eliminated the necessity of sharded implementation. A high
frequency memcache to datastore implementation will be very unreliable
due to high frequency non atomic operations.

On Nov 11, 4:12 pm, Bill <[EMAIL PROTECTED]> wrote:
> I probably should've piped up on the thread earlier.  I'm currently
> looking at yejun's fork and will merge pending some questions I have
> on his optimizations.
>
> Here's one:
> My old code stored the counter name in each shard so I could get all
> shards with a single fetch.  If you have 20 shards, you could have any
> number of actually created shards.  In a very high transaction system,
> probably all 20 shards exist.
> In yejun's optimization, he's iterating through each shard using
> get_by_key_name and checking if it exists.  Which is likely to be
> faster?
>
> A nice optimization by yejun is making count a TextProperty.  This
> will prevent indexing and would probably save some cycles.
>
> Josh, you said "lines 144-145 should be under the try: on line 137.
> That way, the delayed counter count won't get reset to zero even in
> the case of a failed transaction."
>
> I thought any datastore errors are handled via the db.Error exception
> which forces a return before the delayed counter count is reset.
> (db.Error is defined in appengine/api/datastore_errors.py)
>
> On Josh's memcached buffering scheme, I can definitely see the utility
> if you're willing to sacrifice some reliability (we're down to one
> point of failure -- memcache) for possibly a lot of speed.  Using
> memcache buffers for counters makes sense because it's easy to
> accumulate requests while for other model puts, like comments or other
> text input, the amount of memcache buffer could grow pretty large
> quickly.
>
> Does it make sense to use a sharded backend to a memcache buffer?
> Depends on the frequency of the final datastore writes, as mentioned
> above.  (I'm not as concerned with complexity as yejun because I think
> this buffering is reasonably simple for counters.)   So I think this
> would be a good thing to add onto the sharded counter code through a
> fork.  Then people who want that kind of speed can opt for it.
>
> -Bill
--~--~-~--~~~---~--~~
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: quotas in appengine

2008-11-11 Thread mawei1981

Hi,All

now I worry about my applications that I development on google
appengine. when the quota has been exceed. what can  I do??

transfer it to Django again or that

how about you/?


On Nov 10, 6:47 pm, "Barry Hunter" <[EMAIL PROTECTED]>
wrote:
> Google have said that Quotas will still be there for paying customers,
> most will then be higher but they wont be gone. My personal opinion of
> course, but Google want you to spend time to make your application
> better not just throw more money at the problem (which is just
> delagating the developement to Google)
>
> However its also been said that high CPU warnings is generally
> considered a bug, so that will be 'cured' at some point for everyone.
>
> On Mon, Nov 10, 2008 at 4:01 AM, Greg <[EMAIL PROTECTED]> wrote:
>
> > It would be nice to get an assurance that paid accounts will "cure"
> > quotas, when they arrive.
>
> > Cheers!
> > Greg.
>
> --
> 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] Define

2008-11-11 Thread jago

Can I define the apps_binding in such a way that all GETs to

/debug
/debug/faq
/debug/compiler
/debug/compiler/faq

apps_binding.append(('/debug',Debug))
application = webapp.WSGIApplication(apps_binding, debug=True)


are forwarded to the 'Debug' class ?

I guess I could also hack around in app.yaml. Still I would like not
to do this but rather set it up in the python file.
--~--~-~--~~~---~--~~
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: create an application

2008-11-11 Thread Marzia Niccolai
Hi,

I have fixed the issue.  You should now be able to create additional
applications.

-Marzia

On Tue, Nov 11, 2008 at 4:07 AM, jun <[EMAIL PROTECTED]> wrote:

>
> hello, I would like to create another application in google app
> engine. It keeps on saying to verify thru SMS, but it has already been
> verified before. how do I go about this?
>
> >
>

--~--~-~--~~~---~--~~
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: www.*.appspot.com

2008-11-11 Thread MajorProgamming

That doesn't seem to be what I am talking about... I'm talking about
on appspot.com when you have a subdomain and want www.that-subdomain.appspot.com
to work.

To illustrate my point: try visiting www.shell.appspot.com

On Nov 11, 9:33 am, "Giovanni Novelli" <[EMAIL PROTECTED]>
wrote:
> There is an accepted issue about such 
> problem:http://code.google.com/p/googleappengine/issues/detail?id=768
>
> 2008/11/11 Jon McAlister <[EMAIL PROTECTED]>
>
>
>
> > That sounds like a reasonable request to me, please file an issue:
> >http://code.google.com/p/googleappengine/issues/list
>
> > On Nov 9, 6:22 pm, MajorProgamming <[EMAIL PROTECTED]> wrote:
> > > I noticed that www.*.appspot.com (where * is the subdomain that you
> > > picked) doesn't work. Is there any reason for this? It would make
> > > sense to have both options for those of our users who don't know any
> > > better (and prefix all urls with www).
>
> > > by the way, blogspot does support www...
--~--~-~--~~~---~--~~
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: service to regularly access a URL?

2008-11-11 Thread Sylvain

This tool http://schedulerservice.appspot.com/
are any webcron

On 11 nov, 13:17, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Hello,
>  I am writing a GAE tutorial, and I have arrived at a point where I
> would like to mention a way to do something regularly (cron-like, if
> you will). For my own needs, it is very easy to set up a cron job on a
> local Linux box that runs wget every day (or every hour). But this is
> not a solution I can propose for my (not very technical) users - it is
> not guaranteed that they have access to a Linux/Unix/MacOS box, I
> don't want to explain the syntax of chron etc. etc.
>
>  So I was wondering, there should be out there some service (free or
> not) that will do exactly this: access a URL regularly. What happens
> with the result is not so important - it could be mailed, stored or
> thrown away.
>
>  Do you guys know of any such thing? I realize this is part of the
> cron-like behavior FAQ, but I can't find an answer.
>
>  thank you,
>
>Walter
--~--~-~--~~~---~--~~
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: reference property and pickle

2008-11-11 Thread Jonk

On 11 marras, 14:22, gops <[EMAIL PROTECTED]> wrote:

> suppoe i have one model
>
> ie.
>
> class A(db.model):
>    bla = db.ReferenceProperty(B)
>
> and i pickle.dump it , will it also store/return the whole data of B
> or just the key ?
>
> i.e. if I latter pickle.loads it , will I have a full B ( so that
> there won't any datastore query happen) ? or just the key and whenever
> i access it it need to fetch it ?

Hi.

I'm interested in why would you want to do such a thing; can you shed
some light on this?


jK


--~--~-~--~~~---~--~~
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: www.*.appspot.com

2008-11-11 Thread MajorProgamming

I filed issue #861

http://code.google.com/p/googleappengine/issues/detail?id=861

On Nov 11, 9:24 am, Jon McAlister <[EMAIL PROTECTED]> wrote:
> That sounds like a reasonable request to me, please file an 
> issue:http://code.google.com/p/googleappengine/issues/list
>
> On Nov 9, 6:22 pm, MajorProgamming <[EMAIL PROTECTED]> wrote:
>
> > I noticed that www.*.appspot.com (where * is the subdomain that you
> > picked) doesn't work. Is there any reason for this? It would make
> > sense to have both options for those of our users who don't know any
> > better (and prefix all urls with www).
>
> > by the way, blogspot does support www...
--~--~-~--~~~---~--~~
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: Crappiest Product from Google

2008-11-11 Thread Blessed Geek

"May be there's a better way to do it" is a very annoying answer.
Perhaps, there is, but that was not the question asked.

Empathise with the asker, pardon him/her for expressing some
frustration and just say whether it can be done and otherwise provide
and alternative.
- Understand the question.
- Don't second guess the intent of the question.
- Refrain from reflecting our emotional attachment to the product.
- Just answer the question without further ado.
- If not possible, humbly confess that the product is not meant to
work the way the asker wants and then only suggest an alternative.

Very often, the asker is facing constraints that we, but not the
asker, have the liberty to avoid.
--~--~-~--~~~---~--~~
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: Deleting index stuck

2008-11-11 Thread Marzia Niccolai
Hi Derrick,

This index has deleted.  Sometimes it can take a few hours to upload/delete
index definitions.

-Marzia

On Mon, Nov 10, 2008 at 4:52 PM, Derrick <[EMAIL PROTECTED]> wrote:

>
> I am having the same issue.  My application is "vhac".
>
> 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] How to: Variable assignment in django template.

2008-11-11 Thread Blessed Geek

I need to perform variable assignment in a django template.
Just to try the viability, I tested it out with the simple django
template version of the guestbook example. But python/eclipse gave me
an error:


  
{% for greeting in greetings %}
  {% if greeting.author %}
{{ greeting.author.nickname }} wrote:
  {% else %}
   An anonymous person wrote:
  {% endif %}
  {% x = greeting.content %}
{% endfor %}

  



Could someone tell me (I have lots of experience and love for java and
JSP) where I have gone wrong in performing the assignment of x?

How to perform var assignment in django template?

Cannot be done? Then django is lousy. If so, could someone point me to
a better python template technology?

--~--~-~--~~~---~--~~
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: How to: Variable assignment in django template.

2008-11-11 Thread WalterJJ

Just brainstorming:
maybe writing a custom tag?  
http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#a-quick-overview

Best regards,
Walter

On 11 nov, 10:10, Blessed Geek <[EMAIL PROTECTED]> wrote:
> Rather, what I meant is
>
> I know what I want to do. Without going into details of what I need to
> do just tell me in sufficient details:
> How can I perform variable assignment in django template?
>
> Your help and your tolerance of my short attitude is greatly
> appreciated. I really need an answer precise to the question.
--~--~-~--~~~---~--~~
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: Implementing multi-user security within a single app

2008-11-11 Thread Greg

Sounds like you are building appengine! It provides per-user quotas,
limited APIs, and individual datastore access...

OK, that was a facile comment, but it may give you an idea of how big
a job you have ahead. You will need to build a finely grained
authentication system, an access control layer between the user and
the datastore, and pre-process python code to remove modules you don't
like (and be prepared to argue with users who think that their
favourite module should be allowed).

Even then, unless you are a remarkable developer or your code was open
and widely used so other developers could help shake out the bugs, it
would be unlikely to stand up to anyone who wanted to abuse it. I'd
suggest you look at removing or severely limiting python scripting -
maybe don't allow imports at all. That resolves the datastore problem
too.

If you have to allow scripting, why not offer your app as a framework
that users put on appengine themselves. That way they have their own
datastore, authentication and can resolve abuse themselves. Maybe
offer a service setting it up for them, if necessary.

Cheers!
Greg.
--~--~-~--~~~---~--~~
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: Define

2008-11-11 Thread theo

I use django-helper, so this may or may not be relevant to you.  The
URL Dispatcher in Django matches regular expressions, so something
like ^/debug/.*$ should do the trick.

On Nov 11, 1:57 pm, jago <[EMAIL PROTECTED]> wrote:
> Can I define the apps_binding in such a way that all GETs to
>
> /debug
> /debug/faq
> /debug/compiler
> /debug/compiler/faq
>
> apps_binding.append(('/debug',    Debug))
> application = webapp.WSGIApplication(apps_binding, debug=True)
>
> are forwarded to the 'Debug' class ?
>
> I guess I could also hack around in app.yaml. Still I would like not
> to do this but rather set it up in the python file.
--~--~-~--~~~---~--~~
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: Tips on Optimizing Writes?

2008-11-11 Thread Jeff S

Apologies for the late response Josh. To clarify, when looking at the
logs, the colored warning message with the exclamation-mark icon on
the collapsed log entry is based on both the runtime and datastore CPU
combined. A CPU message within the expanded log entry measures the
runtime CPU only.

To reuse Waldemar's screenshot, the circled warning message is the
combined datastore and runtime CPU:

http://freenet-homepage.de/wkornewald/logs-expanded.jpg

Happy coding,

Jeff

On Oct 29, 6:46 pm, Josh Heitzman <[EMAIL PROTECTED]> wrote:
> Jeffyou said:
>
> "TheCPUwarning in the log is based on runtimeCPU, while the
> displayedCPUwarning in the log is based on runtime and datastoreCPU."
>
> but you wrote "in the log is based on" both times.  I'd assume one of
> those is type, so could you clarify which if the mcycle consumption
> value shown in the per request logs the runtime mcycles or the runtime
> and datastore mcycles?
>
> If the mcycle value shown in the per request logs is only the runtime
> mcycles then issue 786 is not a duplicate of 814 as the values listed
> in 786 were taken from the per request logs.
>
> Thanks,
>
> Josh Heitzman
>
> On Oct 29, 11:27 am,JeffS <[EMAIL PROTECTED]> wrote:
>
> > Hi Waldemar,
>
> > On Oct 28, 3:22 pm, Waldemar Kornewald <[EMAIL PROTECTED]> wrote:
>
> > > HiJeff,
>
> > > On 28 Okt., 21:11,JeffS <[EMAIL PROTECTED]> wrote:
>
> > > > > Our queries and indices are rather simple. I should clarify:
> > > > > The particular problem I'm talking about is a view that currently has
> > > > > a response time of about 360ms and almost all of the time (280ms) is
> > > > > spent on datastore put()/fetch()/get(). IOW, runtimeCPUusage is low.
> > > > > If you only read data then 360ms would probably consume less than
> > > > > 1500mcycles, but since this view primarily writes to the datastore it
> > > > > consumes more than 10,000mcycles! That's really bothering me because I
> > > > > already get yellow warnings for views that consume more than
> > > > > 1000mcycles and here I have red warnings. How am I supposed to
> > > > > implement a simple write operation if it eats mcycles so quickly? Can
> > > > > I just ignore the warning since only runtimecpucounts and we
> > > > > primarily consume datastorecpuin this case?
>
> > > > From your description, it sounds like the datastoreCPUusage need not
> > > > concern you. If theCPUUsage listed on the admin console is at an
> > > > acceptable level and the logs do not contain large amounts ofhighCPU
> > > > request warnings, then your app should be okay.
>
> > > Well, that's the problem. The dashboard shows a warning sign ("")
> > > and veryhigh"AvgCPU" usage for that URL, but the logs don't mention
> > > anything at all for that URL. So, which is more correct? The dashboard
> > > or the logs? :)
>
> > The two are currently measuring different things. TheCPUwarning in
> > the log is based on runtimeCPU, while the displayedCPUwarning in
> > the log is based on runtime and datastoreCPU.
>
> > Thank you,
>
> >Jeff
>
> > > Normally, if I consume too muchCPUI get an explicit warning
> > > *message* in the logs:
>
> > >       10-25 06:48AM 43.525 / 200 802ms 2754mcycles  3kb
> > >       [...snip...]
> > >       This request used ahighamount ofCPU, and was roughly 2.6
> > > times over the average requestCPUlimit.HighCPUrequests have a
> > > small quota, and if you exceed this quota, your app will be
> > > temporarily disabled.
>
> > > As I said, that warning message doesn't appear. But if I print
> > > something to the logs I can see in the header of the log entry that
> > > the request consumes a huge amount ofCPU(e.g., "15000mcycles ",
> > > please note the "" warning *sign*). Why do I *not* get a warning
> > > *message* although I can provoke a warning *sign* if (and only if) I
> > > print something to the logs?
>
> > > Also, why does theCPUquota usage go up and down so quickly? A few
> > > minutes ago I had 40gcycles used and after I visited thathigh-CPUURL
> > > four times it went up to 85gcycles and a few minutes later it went
> > > back to 0. I thought this was a *24h* moving window? Don't get me
> > > wrong. I don't mind quota usage going back to zero every few minutes
> > > (or seconds would be fine, too). :)
>
> > > Thanks!
>
> > > Bye,
> > > Waldemar Kornewald
--~--~-~--~~~---~--~~
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: BadValueError: Property age must be an int or long, not a unicode

2008-11-11 Thread Toney

Hi Marzia, after I cleared the data store the problem went away. Thank
you for your help

On Nov 11, 2:38 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi Toney,
>
> This should work, and in fact I have not been able to replicate the issue
> using a small test example.  Would it be possible to provide the actual code
> you are running?
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 6:43 AM, Toney <[EMAIL PROTECTED]> wrote:
>
> > I have an html form that has two fields, fname and age.  I have one
> > Model as a string and the other as a integer.  When I try to submit
> > the form I get the error...
>
> > BadValueError: Property age must be an int or long, not a unicode
>
> > Can anyone tell me what I may be missing.
>
> > note if I remove the age field or set it's property to string the form
> > saves and the data displays with no errors, however I will want in the
> > future to be able to perform searches based integer and date.
>
> > class Greeting(db.Model):
> >  fname = db.StringProperty()
> >  age = db.IntegerProperty()
>
> > class Guestbook(webapp.RequestHandler):
> >  def post(self):
> >    greeting.fname = self.request.get('fname')
> >    greeting.age = int(self.request.get('age'))
--~--~-~--~~~---~--~~
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: Define

2008-11-11 Thread Jeff S

Hi jago,

The WSGIApplication supports regular expressions in the app_binding.
You should be able to get the desired behavior with:

apps_binding.append(('/debug.*',Debug))

Happy coding,

Jeff

On Nov 11, 4:12 pm, theo <[EMAIL PROTECTED]> wrote:
> I use django-helper, so this may or may not be relevant to you.  The
> URL Dispatcher in Django matches regular expressions, so something
> like ^/debug/.*$ should do the trick.
>
> On Nov 11, 1:57 pm, jago <[EMAIL PROTECTED]> wrote:
>
> > Can I define the apps_binding in such a way that all GETs to
>
> > /debug
> > /debug/faq
> > /debug/compiler
> > /debug/compiler/faq
>
> > apps_binding.append(('/debug',    Debug))
> > application = webapp.WSGIApplication(apps_binding, debug=True)
>
> > are forwarded to the 'Debug' class ?
>
> > I guess I could also hack around in app.yaml. Still I would like not
> > to do this but rather set it up in the python file.
--~--~-~--~~~---~--~~
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: service to regularly access a URL?

2008-11-11 Thread [EMAIL PROTECTED]

gaeutilities has a way for you to build the necessary functionality
you seek into your app. While it's still developmental, the project
now has a cron utility. To put it basically, it has two parts.

1. An application handler you can plug right into your app.yaml to add
tasks using cron syntax.
2. A cron class you can add, and then initialize on any page you want
to allow to handle firing off cron tasks.

How it works is every time you initialize Cron() in a request, it will
check and see if any tasks are scheduled to be run. If so, it will run
them. Because urlfetch is still synchronous, it checks the time before
and after each task it's running, if 1 (or more) as passed since it's
started firing tasks, it stops and continues on with the actual
request, leaving the rest of the tasks for the next request.

gaeutilities can be found here: http://gaeutilities.appspot.com/
Here's the wiki page with more information on Cron:
http://code.google.com/p/gaeutilities/wiki/Cron



On Nov 11, 7:17 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hello,
>  I am writing a GAE tutorial, and I have arrived at a point where I
> would like to mention a way to do something regularly (cron-like, if
> you will). For my own needs, it is very easy to set up a cron job on a
> local Linux box that runs wget every day (or every hour). But this is
> not a solution I can propose for my (not very technical) users - it is
> not guaranteed that they have access to a Linux/Unix/MacOS box, I
> don't want to explain the syntax of chron etc. etc.
>
>  So I was wondering, there should be out there some service (free or
> not) that will do exactly this: access a URL regularly. What happens
> with the result is not so important - it could be mailed, stored or
> thrown away.
>
>  Do you guys know of any such thing? I realize this is part of the
> cron-like behavior FAQ, but I can't find an answer.
>
>  thank you,
>
>    Walter
--~--~-~--~~~---~--~~
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: Upload data to datastore

2008-11-11 Thread Jeff S

Hi Marcelo,

Are you sure that the selector requested by the client is mapping to
the BulkUpload RequestHandler? The error that your client receives
sounds like the default error when the invoked request handler doesn't
have a post method.

Cheers,

Jeff

On Nov 10, 10:46 am, Marcelo <[EMAIL PROTECTED]> wrote:
> Hi there.
>
> I'm trying to upload some data to datastore, I can't use CSV bulk
> uploader because my data is not just text. Part of the data is an
> image. So I decide to make a python script to call a POST method on
> the server and go saving each row of my data.
>
> I test on local environment and works well, but after upload the
> application, my script receive an error 405 Method POST not allowed.
>
> I define my request class on server:
>
> class BulkUpload(webapp.RequestHandler):
>     def post(self):
>         
>         model.put()
>
> On the client i'm using a script to call a url
>
>     content_type, body = encode_multipart_formdata(fields, files)
> #here i put all my data
>     h = httplib.HTTP(host)
>     h.putrequest('POST', selector)
>     h.putheader('content-type', content_type)
>     h.putheader('content-length', str(len(body)))
>     h.endheaders()
>     h.send(body)
>     errcode, errmsg, headers = h.getreply()
>
> Thanks for your help.
--~--~-~--~~~---~--~~
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: BadValueError: Property age must be an int or long, not a unicode

2008-11-11 Thread Toney

I do have another question, what would be the self.request method to
get a date string of "11/11/2008" entered into a html field to be able
to add it to the data store with a field of DateProperty()?

for example to do the above i'm asking with integer it would be..
greeting.age = int(self.request.get('age'))

but i'm not sure what it would be for field defined as DateProperty()



On Nov 11, 8:54 pm, Toney <[EMAIL PROTECTED]> wrote:
> Hi Marzia, after I cleared the data store the problem went away. Thank
> you for your help
>
> On Nov 11, 2:38 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
>
> > Hi Toney,
>
> > This should work, and in fact I have not been able to replicate the issue
> > using a small test example.  Would it be possible to provide the actual code
> > you are running?
>
> > -Marzia
>
> > On Tue, Nov 11, 2008 at 6:43 AM, Toney <[EMAIL PROTECTED]> wrote:
>
> > > I have an html form that has two fields, fname and age.  I have one
> > > Model as a string and the other as a integer.  When I try to submit
> > > the form I get the error...
>
> > > BadValueError: Property age must be an int or long, not a unicode
>
> > > Can anyone tell me what I may be missing.
>
> > > note if I remove the age field or set it's property to string the form
> > > saves and the data displays with no errors, however I will want in the
> > > future to be able to perform searches based integer and date.
>
> > > class Greeting(db.Model):
> > >  fname = db.StringProperty()
> > >  age = db.IntegerProperty()
>
> > > class Guestbook(webapp.RequestHandler):
> > >  def post(self):
> > >    greeting.fname = self.request.get('fname')
> > >    greeting.age = int(self.request.get('age'))
--~--~-~--~~~---~--~~
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: Implementing multi-user security within a single app

2008-11-11 Thread sal


I had seen a couple GAE apps that let users easily run Python code on
the serverside, so I had thought maybe someone had worked some issues
out already... but you're right, it sounds like I would have to re-
implement a lot of functionality.

I may have to analyze the python scripts and strip code, as you were
saying...  was hoping to avoid that but if its the only option it may
be doable.  (I think I remember seeing some AST processing examples
for Python that would help do the trick...)

If anyone else has any ideas to do this with out-of-the box features
I'm still ears!! =)

On Nov 11, 5:48 pm, Greg <[EMAIL PROTECTED]> wrote:

> If you have to allow scripting, why not offer your app as a framework
> that users put on appengine themselves. That way they have their own
> datastore, authentication and can resolve abuse themselves. Maybe
> offer a service setting it up for them, if necessary.

This could be an option - I wanted the system user friendly enough, to
the point where a user didn't need to know any technical details, just
sign up for an account and start using the Wiki.  In this case I would
have to find a way to auto-publish the app to his own Appengine
account, likely... I'll need to wrap my brain around that for a bit!

>
> Cheers!
> Greg.
--~--~-~--~~~---~--~~
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: BadValueError: Property age must be an int or long, not a unicode

2008-11-11 Thread Alexander Kojevnikov

> I do have another question, what would be the self.request method to
> get a date string of "11/11/2008" entered into a html field to be able
> to add it to the data store with a field of DateProperty()?
>
> for example to do the above i'm asking with integer it would be..
> greeting.age = int(self.request.get('age'))
>
> but i'm not sure what it would be for field defined as DateProperty()

DateProperty expects a datetime.date value:
http://code.google.com/appengine/docs/datastore/typesandpropertyclasses.html#DateProperty

You can convert your date string in (presumably) US date format to
Python's datetime.date using this code:

mystr = self.request.get('mydate')
greeting.mydate = datetime.date.fromtimestamp(time.mktime(time.strptime
(mystr, '%m/%d/%Y')))

Also, make sure you handle the parsing errors.

--
www.muspy.com
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Gee

6:55pm - is appengine.google.com down for anyone else?

my main app is returning 404 but some of my other apps are ok...  I
cannot deploy because appengine.google.com is also returning 404

On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> This is just a reminder that this evening from 5-6pm PST, you will not
> be able to deploy new application versions.  More details can be found
> here:http://groups.google.com/group/google-appengine-downtime-notify/brows...
>
> Also, a reminder that all notifications of App Engine downtime,
> planned or otherwise, can be found on the Downtime Notify 
> group:http://groups.google.com/group/google-appengine-downtime-notify/
>
> -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread cz

I'm getting 404/not found  for http://appengine.google.com/ which was
how I accessed the dashboard up until last night.
Also, my app (adb2) is returning spurious 500 server errors and random
404/not found, but it worked fine up until the system maintenance
period. This app was last deployed around 8pm last night so it should
be still working I think. It's a Django app that uses zipimport for
the django libs if that makes any difference...
I can't get to the logs since the dashboard access seems borked. Is
this just me or are the app servers still a little funky right now?

Thanks,
- Claude

On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> This is just a reminder that this evening from 5-6pm PST, you will not
> be able to deploy new application versions.  More details can be found
> here:http://groups.google.com/group/google-appengine-downtime-notify/brows...
>
> Also, a reminder that all notifications of App Engine downtime,
> planned or otherwise, can be found on the Downtime Notify 
> group:http://groups.google.com/group/google-appengine-downtime-notify/
>
> -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Alexander Kojevnikov

My website works ATM:
www.muspy.com

appengine.google.com returns 404

On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> 6:55pm - is appengine.google.com down for anyone else?
>
> my main app is returning 404 but some of my other apps are ok...  I
> cannot deploy because appengine.google.com is also returning 404
>
> On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > This is just a reminder that this evening from 5-6pm PST, you will not
> > be able to deploy new application versions.  More details can be found
> > here:http://groups.google.com/group/google-appengine-downtime-notify/brows...
>
> > Also, a reminder that all notifications of App Engine downtime,
> > planned or otherwise, can be found on the Downtime Notify 
> > group:http://groups.google.com/group/google-appengine-downtime-notify/
>
> > -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marzia Niccolai
Hi,

The admin console is currently down.  More information will be posted to
Downtime Notify soon.

-Marzia

On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
[EMAIL PROTECTED]> wrote:

>
> My website works ATM:
> www.muspy.com
>
> appengine.google.com returns 404
>
> On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > 6:55pm - is appengine.google.com down for anyone else?
> >
> > my main app is returning 404 but some of my other apps are ok...  I
> > cannot deploy because appengine.google.com is also returning 404
> >
> > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
> >
> > > Hi,
> >
> > > This is just a reminder that this evening from 5-6pm PST, you will not
> > > be able to deploy new application versions.  More details can be found
> > > here:
> http://groups.google.com/group/google-appengine-downtime-notify/brows...
> >
> > > Also, a reminder that all notifications of App Engine downtime,
> > > planned or otherwise, can be found on the Downtime Notify group:
> http://groups.google.com/group/google-appengine-downtime-notify/
> >
> > > -Marzia
> >
>

--~--~-~--~~~---~--~~
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] New __dict__ for entities?

2008-11-11 Thread Nick Winter

Since 6:00 PM, our app has started throwing KeyErrors:

some_entity.__getattr__(item_name)

Looking at the entities, it looks like the attributes we were
referencing are no longer part of the entity's __dict__, but are now
just part of both some_entity.__dict__._entity and
some_entity.__dict__._model_values.

I'm guessing this change is related to tonight's update. Okay, so we
can switch those __getattr__s to __getattribute__s, and that works.
What about setting properties dynamically? Is there a way to do this
besides the following?:

some_entity.__dict__['_entity'][item_name] = foo
some_entity.__dict__['_model_values'][item_name] = foo

I don't know which is needed, or if both are. It seems pretty brutal.

We're putting in a bunch of duplicate code to handle each formerly
dynamic property for now to get our app back online.
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Gee

k yea I also got lots of random 500 server errors around the
maintenance time... now my app is down, but one of my other apps is ok
(seems to only affect some apps)

I get 404 errors on both my app and appengine.google.com

hope this is resolved soon... our app is deployed and we have lots of
unhappy users at the moment :-(

thanks for posting your status so I know its not just me :-)

On Nov 11, 7:03 pm, Alexander Kojevnikov <[EMAIL PROTECTED]>
wrote:
> My website works ATM:www.muspy.com
>
> appengine.google.com returns 404
>
> On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
>
> > 6:55pm - is appengine.google.com down for anyone else?
>
> > my main app is returning 404 but some of my other apps are ok...  I
> > cannot deploy because appengine.google.com is also returning 404
>
> > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > Hi,
>
> > > This is just a reminder that this evening from 5-6pm PST, you will not
> > > be able to deploy new application versions.  More details can be found
> > > here:http://groups.google.com/group/google-appengine-downtime-notify/brows...
>
> > > Also, a reminder that all notifications of App Engine downtime,
> > > planned or otherwise, can be found on the Downtime Notify 
> > > group:http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Gee

Thanks for the update...

Any chance of helping us get our apps back online?  (rotzy.com)

I can deal with console being down :-)  but my app is 404ing too :-(

thanks!!

On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> The admin console is currently down.  More information will be posted to
> Downtime Notify soon.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> [EMAIL PROTECTED]> wrote:
>
> > My website works ATM:
> >www.muspy.com
>
> > appengine.google.com returns 404
>
> > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > my main app is returning 404 but some of my other apps are ok...  I
> > > cannot deploy because appengine.google.com is also returning 404
>
> > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > > Hi,
>
> > > > This is just a reminder that this evening from 5-6pm PST, you will not
> > > > be able to deploy new application versions.  More details can be found
> > > > here:
> >http://groups.google.com/group/google-appengine-downtime-notify/brows...
>
> > > > Also, a reminder that all notifications of App Engine downtime,
> > > > planned or otherwise, can be found on the Downtime Notify group:
> >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > -Marzia
--~--~-~--~~~---~--~~
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: Comparing entities

2008-11-11 Thread Calvin Spealman

It is a matter of intent. Not everything type that can be equal or not
equal can also be greater or less than.

On Mon, Nov 10, 2008 at 6:31 PM, David Symonds <[EMAIL PROTECTED]> wrote:
>
> On Mon, Nov 10, 2008 at 10:18 AM, Calvin Spealman <[EMAIL PROTECTED]> wrote:
>
>> It is often preferred that you use __eq__, __ne__, __lt__, etc.
>> instead of __cmp__. If you are only defined equality, define __eq__
>> and (as usually applicable) __ne__.
>
> Why is that? It seems that it would be more error-prone to implement
> similar logic across two or more functions than just one function.
>
>
> Dave.
>
> >
>



-- 
Read my blog! I depend on your acceptance of my opinion! I am interesting!
http://techblog.ironfroggy.com/
Follow me if you're into that sort of thing: http://www.twitter.com/ironfroggy

--~--~-~--~~~---~--~~
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] appengine.google.com connection error

2008-11-11 Thread lws68825

I got 404 not found error when I connected to appengine.google.com.
Anyone can help me?
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marzia Niccolai
Hi,

Our engineers are working as quickly as possible to restore functionality.
A small number of applications, which include the Admin Console, are
affected by this outage.  If your application was affected, you should have
received an email directly from our engineers to the developers listed in
your admin console.

-Marzia

On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:

>
> Thanks for the update...
>
> Any chance of helping us get our apps back online?  (rotzy.com)
>
> I can deal with console being down :-)  but my app is 404ing too :-(
>
> thanks!!
>
> On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > The admin console is currently down.  More information will be posted to
> > Downtime Notify soon.
> >
> > -Marzia
> >
> > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
> >
> > [EMAIL PROTECTED]> wrote:
> >
> > > My website works ATM:
> > >www.muspy.com
> >
> > > appengine.google.com returns 404
> >
> > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > 6:55pm - is appengine.google.com down for anyone else?
> >
> > > > my main app is returning 404 but some of my other apps are ok...  I
> > > > cannot deploy because appengine.google.com is also returning 404
> >
> > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
> >
> > > > > Hi,
> >
> > > > > This is just a reminder that this evening from 5-6pm PST, you will
> not
> > > > > be able to deploy new application versions.  More details can be
> found
> > > > > here:
> > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> ..
> >
> > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > planned or otherwise, can be found on the Downtime Notify group:
> > >http://groups.google.com/group/google-appengine-downtime-notify/
> >
> > > > > -Marzia
> >
>

--~--~-~--~~~---~--~~
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: appengine.google.com connection error

2008-11-11 Thread Marzia Niccolai
Hi,

Please see this thread for further details:
http://groups.google.com/group/google-appengine/browse_thread/thread/522af5e841eb6c1e

-Marzia

On Tue, Nov 11, 2008 at 7:42 PM, lws68825 <[EMAIL PROTECTED]> wrote:

>
> I got 404 not found error when I connected to appengine.google.com.
> Anyone can help me?
> >
>

--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Gee

Got the email.. thanks for the prompt response... we appreciate the
ease in communicating with you guys during downtimes :-)

On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Our engineers are working as quickly as possible to restore functionality.
> A small number of applications, which include the Admin Console, are
> affected by this outage.  If your application was affected, you should have
> received an email directly from our engineers to the developers listed in
> your admin console.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > Thanks for the update...
>
> > Any chance of helping us get our apps back online?  (rotzy.com)
>
> > I can deal with console being down :-)  but my app is 404ing too :-(
>
> > thanks!!
>
> > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Hi,
>
> > > The admin console is currently down.  More information will be posted to
> > > Downtime Notify soon.
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > [EMAIL PROTECTED]> wrote:
>
> > > > My website works ATM:
> > > >www.muspy.com
>
> > > > appengine.google.com returns 404
>
> > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > > my main app is returning 404 but some of my other apps are ok...  I
> > > > > cannot deploy because appengine.google.com is also returning 404
>
> > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > > > > Hi,
>
> > > > > > This is just a reminder that this evening from 5-6pm PST, you will
> > not
> > > > > > be able to deploy new application versions.  More details can be
> > found
> > > > > > here:
> > > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > ..
>
> > > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > > planned or otherwise, can be found on the Downtime Notify group:
> > > >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > > > -Marzia
--~--~-~--~~~---~--~~
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: New __dict__ for entities?

2008-11-11 Thread Marzia Niccolai
Hi,

Our engineers are currently investigating this issue, which we suspect to be
related to the scheduled maintenance this evening.

-Marzia

On Tue, Nov 11, 2008 at 7:12 PM, Nick Winter <[EMAIL PROTECTED]> wrote:

>
> Since 6:00 PM, our app has started throwing KeyErrors:
>
> some_entity.__getattr__(item_name)
>
> Looking at the entities, it looks like the attributes we were
> referencing are no longer part of the entity's __dict__, but are now
> just part of both some_entity.__dict__._entity and
> some_entity.__dict__._model_values.
>
> I'm guessing this change is related to tonight's update. Okay, so we
> can switch those __getattr__s to __getattribute__s, and that works.
> What about setting properties dynamically? Is there a way to do this
> besides the following?:
>
> some_entity.__dict__['_entity'][item_name] = foo
> some_entity.__dict__['_model_values'][item_name] = foo
>
> I don't know which is needed, or if both are. It seems pretty brutal.
>
> We're putting in a bunch of duplicate code to handle each formerly
> dynamic property for now to get our app back online.
> >
>

--~--~-~--~~~---~--~~
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: simulating login using webtest

2008-11-11 Thread Sudhir

Well, I managed to figure it out myself :-/

Just stub out users.get_current_user = lambada usr = '[EMAIL PROTECTED]':
return usr
before you run the tests. You can also extract it out into a method to
make things easy.

On Oct 21, 9:28 am, Sudhir <[EMAIL PROTECTED]> wrote:
> Does anyone know how to simulate login using webtest? I've tried
> doing
>
> app.get('/_ah/login?action=Login&[EMAIL PROTECTED]')
>
> but its doesn't register the user as logged in when using webtest.
>
> Sudhir
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Gayle Laakmann

My site (http://www.careercup.com) is down.  I did not get an email.

On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Our engineers are working as quickly as possible to restore functionality.
> A small number of applications, which include the Admin Console, are
> affected by this outage.  If your application was affected, you should have
> received an email directly from our engineers to the developers listed in
> your admin console.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > Thanks for the update...
>
> > Any chance of helping us get our apps back online?  (rotzy.com)
>
> > I can deal with console being down :-)  but my app is 404ing too :-(
>
> > thanks!!
>
> > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Hi,
>
> > > The admin console is currently down.  More information will be posted to
> > > Downtime Notify soon.
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > [EMAIL PROTECTED]> wrote:
>
> > > > My website works ATM:
> > > >www.muspy.com
>
> > > > appengine.google.com returns 404
>
> > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > > my main app is returning 404 but some of my other apps are ok...  I
> > > > > cannot deploy because appengine.google.com is also returning 404
>
> > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > > > > Hi,
>
> > > > > > This is just a reminder that this evening from 5-6pm PST, you will
> > not
> > > > > > be able to deploy new application versions.  More details can be
> > found
> > > > > > here:
> > > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > ..
>
> > > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > > planned or otherwise, can be found on the Downtime Notify group:
> > > >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > > > -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread benben

My site www.119797.com also donw.

On 11月12日, 下午12时24分, Gayle Laakmann <[EMAIL PROTECTED]> wrote:
> My site (http://www.careercup.com) is down.  I did not get an email.
>
> On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > Our engineers are working as quickly as possible to restore functionality.
> > A small number of applications, which include the Admin Console, are
> > affected by this outage.  If your application was affected, you should have
> > received an email directly from our engineers to the developers listed in
> > your admin console.
>
> > -Marzia
>
> > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > Thanks for the update...
>
> > > Any chance of helping us get our apps back online?  (rotzy.com)
>
> > > I can deal with console being down :-)  but my app is 404ing too :-(
>
> > > thanks!!
>
> > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > Hi,
>
> > > > The admin console is currently down.  More information will be posted to
> > > > Downtime Notify soon.
>
> > > > -Marzia
>
> > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > > [EMAIL PROTECTED]> wrote:
>
> > > > > My website works ATM:
> > > > >www.muspy.com
>
> > > > > appengine.google.com returns 404
>
> > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > > > my main app is returning 404 but some of my other apps are ok...  I
> > > > > > cannot deploy because appengine.google.com is also returning 404
>
> > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > > > > > Hi,
>
> > > > > > > This is just a reminder that this evening from 5-6pm PST, you will
> > > not
> > > > > > > be able to deploy new application versions.  More details can be
> > > found
> > > > > > > here:
> > > > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > ..
>
> > > > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > > > planned or otherwise, can be found on the Downtime Notify group:
> > > > >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > > > > -Marzia
>
>
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marzia Niccolai
Hi,

Another issue occurred during scheduled maintenance tonight, which is not
related to the issue mentioned above.

This issue affected objects stored in Memcache.  If your application was
affected by this error, you would not have been individually emailed.

If your application is currently experiencing issues, it is most likely
related to the Memcache issue which our engineering team is currently
investigating.  You should see an AttributeError in your application's logs.

We expect this issue will be fixed shortly.

-Marzia

On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]> wrote:

>
> My site (http://www.careercup.com) is down.  I did not get an email.
>
> On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > Our engineers are working as quickly as possible to restore
> functionality.
> > A small number of applications, which include the Admin Console, are
> > affected by this outage.  If your application was affected, you should
> have
> > received an email directly from our engineers to the developers listed in
> > your admin console.
> >
> > -Marzia
> >
> > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
> >
> > > Thanks for the update...
> >
> > > Any chance of helping us get our apps back online?  (rotzy.com)
> >
> > > I can deal with console being down :-)  but my app is 404ing too :-(
> >
> > > thanks!!
> >
> > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > Hi,
> >
> > > > The admin console is currently down.  More information will be posted
> to
> > > > Downtime Notify soon.
> >
> > > > -Marzia
> >
> > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
> >
> > > > [EMAIL PROTECTED]> wrote:
> >
> > > > > My website works ATM:
> > > > >www.muspy.com
> >
> > > > > appengine.google.com returns 404
> >
> > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > 6:55pm - is appengine.google.com down for anyone else?
> >
> > > > > > my main app is returning 404 but some of my other apps are ok...
>  I
> > > > > > cannot deploy because appengine.google.com is also returning 404
> >
> > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
> >
> > > > > > > Hi,
> >
> > > > > > > This is just a reminder that this evening from 5-6pm PST, you
> will
> > > not
> > > > > > > be able to deploy new application versions.  More details can
> be
> > > found
> > > > > > > here:
> > > > >
> http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > ..
> >
> > > > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > > > planned or otherwise, can be found on the Downtime Notify
> group:
> > > > >http://groups.google.com/group/google-appengine-downtime-notify/
> >
> > > > > > > -Marzia
> >
>

--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread benben

My app can not work now, can you tell me how to fix this? Do not use
memcache?

On 11月12日, 下午12时54分, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Another issue occurred during scheduled maintenance tonight, which is not
> related to the issue mentioned above.
>
> This issue affected objects stored in Memcache.  If your application was
> affected by this error, you would not have been individually emailed.
>
> If your application is currently experiencing issues, it is most likely
> related to the Memcache issue which our engineering team is currently
> investigating.  You should see an AttributeError in your application's logs.
>
> We expect this issue will be fixed shortly.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]> wrote:
>
> > My site (http://www.careercup.com) is down.  I did not get an email.
>
> > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Hi,
>
> > > Our engineers are working as quickly as possible to restore
> > functionality.
> > > A small number of applications, which include the Admin Console, are
> > > affected by this outage.  If your application was affected, you should
> > have
> > > received an email directly from our engineers to the developers listed in
> > > your admin console.
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > > Thanks for the update...
>
> > > > Any chance of helping us get our apps back online?  (rotzy.com)
>
> > > > I can deal with console being down :-)  but my app is 404ing too :-(
>
> > > > thanks!!
>
> > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > > Hi,
>
> > > > > The admin console is currently down.  More information will be posted
> > to
> > > > > Downtime Notify soon.
>
> > > > > -Marzia
>
> > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > > > [EMAIL PROTECTED]> wrote:
>
> > > > > > My website works ATM:
> > > > > >www.muspy.com
>
> > > > > > appengine.google.com returns 404
>
> > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > > > > my main app is returning 404 but some of my other apps are ok...
> >  I
> > > > > > > cannot deploy because appengine.google.com is also returning 404
>
> > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > Hi,
>
> > > > > > > > This is just a reminder that this evening from 5-6pm PST, you
> > will
> > > > not
> > > > > > > > be able to deploy new application versions.  More details can
> > be
> > > > found
> > > > > > > > here:
>
> >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > > ..
>
> > > > > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > > > > planned or otherwise, can be found on the Downtime Notify
> > group:
> > > > > >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > > > > > -Marzia
>
>
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marzia Niccolai
Hi,

The issue with Memcache should be now resolved.

-Marzia

On Tue, Nov 11, 2008 at 9:08 PM, Arun Shanker Prasad <
[EMAIL PROTECTED]> wrote:

>
> Hi,
>
>  Thanks for the notice, I saw the error log about the memcache
> issues.. So I rolled out a version without them. When will I be able
> to revert to my old version?
>
> Thanks,
> Arun Shanker Prasad.
>
> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > Another issue occurred during scheduled maintenance tonight, which is not
> > related to the issue mentioned above.
> >
> > This issue affected objects stored in Memcache.  If your application was
> > affected by this error, you would not have been individually emailed.
> >
> > If your application is currently experiencing issues, it is most likely
> > related to the Memcache issue which our engineering team is currently
> > investigating.  You should see an AttributeError in your application's
> logs.
> >
> > We expect this issue will be fixed shortly.
> >
> > -Marzia
> >
> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> wrote:
> >
> > > My site (http://www.careercup.com) is down.  I did not get an email.
> >
> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > Hi,
> >
> > > > Our engineers are working as quickly as possible to restore
> > > functionality.
> > > > A small number of applications, which include the Admin Console, are
> > > > affected by this outage.  If your application was affected, you
> should
> > > have
> > > > received an email directly from our engineers to the developers
> listed in
> > > > your admin console.
> >
> > > > -Marzia
> >
> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
> >
> > > > > Thanks for the update...
> >
> > > > > Any chance of helping us get our apps back online?  (rotzy.com)
> >
> > > > > I can deal with console being down :-)  but my app is 404ing too
> :-(
> >
> > > > > thanks!!
> >
> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > > > Hi,
> >
> > > > > > The admin console is currently down.  More information will be
> posted
> > > to
> > > > > > Downtime Notify soon.
> >
> > > > > > -Marzia
> >
> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
> >
> > > > > > [EMAIL PROTECTED]> wrote:
> >
> > > > > > > My website works ATM:
> > > > > > >www.muspy.com
> >
> > > > > > > appengine.google.com returns 404
> >
> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
> >
> > > > > > > > my main app is returning 404 but some of my other apps are
> ok...
> > >  I
> > > > > > > > cannot deploy because appengine.google.com is also returning
> 404
> >
> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]>
> wrote:
> >
> > > > > > > > > Hi,
> >
> > > > > > > > > This is just a reminder that this evening from 5-6pm PST,
> you
> > > will
> > > > > not
> > > > > > > > > be able to deploy new application versions.  More details
> can
> > > be
> > > > > found
> > > > > > > > > here:
> >
> > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > > > ..
> >
> > > > > > > > > Also, a reminder that all notifications of App Engine
> downtime,
> > > > > > > > > planned or otherwise, can be found on the Downtime Notify
> > > group:
> > > > > > >
> http://groups.google.com/group/google-appengine-downtime-notify/
> >
> > > > > > > > > -Marzia
> >
>

--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Arun Shanker Prasad

Hi,
   Also the error I got was "PicklingError" during the memcache
set. This was working last night
Thanks,
Arun Shanker Prasad.

On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Another issue occurred during scheduled maintenance tonight, which is not
> related to the issue mentioned above.
>
> This issue affected objects stored in Memcache.  If your application was
> affected by this error, you would not have been individually emailed.
>
> If your application is currently experiencing issues, it is most likely
> related to the Memcache issue which our engineering team is currently
> investigating.  You should see an AttributeError in your application's logs.
>
> We expect this issue will be fixed shortly.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]> wrote:
>
> > My site (http://www.careercup.com) is down.  I did not get an email.
>
> > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Hi,
>
> > > Our engineers are working as quickly as possible to restore
> > functionality.
> > > A small number of applications, which include the Admin Console, are
> > > affected by this outage.  If your application was affected, you should
> > have
> > > received an email directly from our engineers to the developers listed in
> > > your admin console.
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > > Thanks for the update...
>
> > > > Any chance of helping us get our apps back online?  (rotzy.com)
>
> > > > I can deal with console being down :-)  but my app is 404ing too :-(
>
> > > > thanks!!
>
> > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > > Hi,
>
> > > > > The admin console is currently down.  More information will be posted
> > to
> > > > > Downtime Notify soon.
>
> > > > > -Marzia
>
> > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > > > [EMAIL PROTECTED]> wrote:
>
> > > > > > My website works ATM:
> > > > > >www.muspy.com
>
> > > > > > appengine.google.com returns 404
>
> > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > > > > my main app is returning 404 but some of my other apps are ok...
> >  I
> > > > > > > cannot deploy because appengine.google.com is also returning 404
>
> > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > Hi,
>
> > > > > > > > This is just a reminder that this evening from 5-6pm PST, you
> > will
> > > > not
> > > > > > > > be able to deploy new application versions.  More details can
> > be
> > > > found
> > > > > > > > here:
>
> >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > > ..
>
> > > > > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > > > > planned or otherwise, can be found on the Downtime Notify
> > group:
> > > > > >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > > > > > -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marzia Niccolai
Hi,

What is the app id that is experiencing this issue?

-Marzia

On Tue, Nov 11, 2008 at 9:13 PM, Arun Shanker Prasad <
[EMAIL PROTECTED]> wrote:

>
> Hi,
>   Also the error I got was "PicklingError" during the memcache
> set. This was working last night
> Thanks,
> Arun Shanker Prasad.
>
> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > Another issue occurred during scheduled maintenance tonight, which is not
> > related to the issue mentioned above.
> >
> > This issue affected objects stored in Memcache.  If your application was
> > affected by this error, you would not have been individually emailed.
> >
> > If your application is currently experiencing issues, it is most likely
> > related to the Memcache issue which our engineering team is currently
> > investigating.  You should see an AttributeError in your application's
> logs.
> >
> > We expect this issue will be fixed shortly.
> >
> > -Marzia
> >
> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> wrote:
> >
> > > My site (http://www.careercup.com) is down.  I did not get an email.
> >
> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > Hi,
> >
> > > > Our engineers are working as quickly as possible to restore
> > > functionality.
> > > > A small number of applications, which include the Admin Console, are
> > > > affected by this outage.  If your application was affected, you
> should
> > > have
> > > > received an email directly from our engineers to the developers
> listed in
> > > > your admin console.
> >
> > > > -Marzia
> >
> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
> >
> > > > > Thanks for the update...
> >
> > > > > Any chance of helping us get our apps back online?  (rotzy.com)
> >
> > > > > I can deal with console being down :-)  but my app is 404ing too
> :-(
> >
> > > > > thanks!!
> >
> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > > > Hi,
> >
> > > > > > The admin console is currently down.  More information will be
> posted
> > > to
> > > > > > Downtime Notify soon.
> >
> > > > > > -Marzia
> >
> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
> >
> > > > > > [EMAIL PROTECTED]> wrote:
> >
> > > > > > > My website works ATM:
> > > > > > >www.muspy.com
> >
> > > > > > > appengine.google.com returns 404
> >
> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
> >
> > > > > > > > my main app is returning 404 but some of my other apps are
> ok...
> > >  I
> > > > > > > > cannot deploy because appengine.google.com is also returning
> 404
> >
> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]>
> wrote:
> >
> > > > > > > > > Hi,
> >
> > > > > > > > > This is just a reminder that this evening from 5-6pm PST,
> you
> > > will
> > > > > not
> > > > > > > > > be able to deploy new application versions.  More details
> can
> > > be
> > > > > found
> > > > > > > > > here:
> >
> > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > > > ..
> >
> > > > > > > > > Also, a reminder that all notifications of App Engine
> downtime,
> > > > > > > > > planned or otherwise, can be found on the Downtime Notify
> > > group:
> > > > > > >
> http://groups.google.com/group/google-appengine-downtime-notify/
> >
> > > > > > > > > -Marzia
> >
>

--~--~-~--~~~---~--~~
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: appengine.google.com connection error

2008-11-11 Thread Efe

I also have same problem!!!

http://1.latest.denizlispordotcom.appspot.com/


On Nov 12, 11:42 am, lws68825 <[EMAIL PROTECTED]> wrote:
> I got 404 not found error when I connected to appengine.google.com.
> Anyone can help me?
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marzia Niccolai
Also, what are you placing in Memcache when your application is showing this
error?

-Marzia

On Tue, Nov 11, 2008 at 9:15 PM, Marzia Niccolai <[EMAIL PROTECTED]> wrote:

> Hi,
>
> What is the app id that is experiencing this issue?
>
> -Marzia
>
>
> On Tue, Nov 11, 2008 at 9:13 PM, Arun Shanker Prasad <
> [EMAIL PROTECTED]> wrote:
>
>>
>> Hi,
>>   Also the error I got was "PicklingError" during the memcache
>> set. This was working last night
>> Thanks,
>> Arun Shanker Prasad.
>>
>> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
>> > Hi,
>> >
>> > Another issue occurred during scheduled maintenance tonight, which is
>> not
>> > related to the issue mentioned above.
>> >
>> > This issue affected objects stored in Memcache.  If your application was
>> > affected by this error, you would not have been individually emailed.
>> >
>> > If your application is currently experiencing issues, it is most likely
>> > related to the Memcache issue which our engineering team is currently
>> > investigating.  You should see an AttributeError in your application's
>> logs.
>> >
>> > We expect this issue will be fixed shortly.
>> >
>> > -Marzia
>> >
>> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
>> wrote:
>> >
>> > > My site (http://www.careercup.com) is down.  I did not get an email.
>> >
>> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
>> > > > Hi,
>> >
>> > > > Our engineers are working as quickly as possible to restore
>> > > functionality.
>> > > > A small number of applications, which include the Admin Console, are
>> > > > affected by this outage.  If your application was affected, you
>> should
>> > > have
>> > > > received an email directly from our engineers to the developers
>> listed in
>> > > > your admin console.
>> >
>> > > > -Marzia
>> >
>> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>> >
>> > > > > Thanks for the update...
>> >
>> > > > > Any chance of helping us get our apps back online?  (rotzy.com)
>> >
>> > > > > I can deal with console being down :-)  but my app is 404ing too
>> :-(
>> >
>> > > > > thanks!!
>> >
>> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
>> > > > > > Hi,
>> >
>> > > > > > The admin console is currently down.  More information will be
>> posted
>> > > to
>> > > > > > Downtime Notify soon.
>> >
>> > > > > > -Marzia
>> >
>> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>> >
>> > > > > > [EMAIL PROTECTED]> wrote:
>> >
>> > > > > > > My website works ATM:
>> > > > > > >www.muspy.com
>> >
>> > > > > > > appengine.google.com returns 404
>> >
>> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
>> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>> >
>> > > > > > > > my main app is returning 404 but some of my other apps are
>> ok...
>> > >  I
>> > > > > > > > cannot deploy because appengine.google.com is also
>> returning 404
>> >
>> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]>
>> wrote:
>> >
>> > > > > > > > > Hi,
>> >
>> > > > > > > > > This is just a reminder that this evening from 5-6pm PST,
>> you
>> > > will
>> > > > > not
>> > > > > > > > > be able to deploy new application versions.  More details
>> can
>> > > be
>> > > > > found
>> > > > > > > > > here:
>> >
>> > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
>> > > > > ..
>> >
>> > > > > > > > > Also, a reminder that all notifications of App Engine
>> downtime,
>> > > > > > > > > planned or otherwise, can be found on the Downtime Notify
>> > > group:
>> > > > > > >
>> http://groups.google.com/group/google-appengine-downtime-notify/
>> >
>> > > > > > > > > -Marzia
>> >>
>>
>

--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Arun Shanker Prasad

Hi,

   Thanks for the quick response, I took a look at the version with
the memcache, I am still getting the following error during the
memcahce..set()

PicklingError: Can't pickle : it's not found as
__builtin__.instancemethod

Thanks,
Arun Shanker Prasad.

On Nov 12, 10:12 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> The issue with Memcache should be now resolved.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 9:08 PM, Arun Shanker Prasad <
>
> [EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> >      Thanks for the notice, I saw the error log about the memcache
> > issues.. So I rolled out a version without them. When will I be able
> > to revert to my old version?
>
> > Thanks,
> > Arun Shanker Prasad.
>
> > On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Hi,
>
> > > Another issue occurred during scheduled maintenance tonight, which is not
> > > related to the issue mentioned above.
>
> > > This issue affected objects stored in Memcache.  If your application was
> > > affected by this error, you would not have been individually emailed.
>
> > > If your application is currently experiencing issues, it is most likely
> > > related to the Memcache issue which our engineering team is currently
> > > investigating.  You should see an AttributeError in your application's
> > logs.
>
> > > We expect this issue will be fixed shortly.
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> > wrote:
>
> > > > My site (http://www.careercup.com) is down.  I did not get an email.
>
> > > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > > Hi,
>
> > > > > Our engineers are working as quickly as possible to restore
> > > > functionality.
> > > > > A small number of applications, which include the Admin Console, are
> > > > > affected by this outage.  If your application was affected, you
> > should
> > > > have
> > > > > received an email directly from our engineers to the developers
> > listed in
> > > > > your admin console.
>
> > > > > -Marzia
>
> > > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > > > > Thanks for the update...
>
> > > > > > Any chance of helping us get our apps back online?  (rotzy.com)
>
> > > > > > I can deal with console being down :-)  but my app is 404ing too
> > :-(
>
> > > > > > thanks!!
>
> > > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > > > > Hi,
>
> > > > > > > The admin console is currently down.  More information will be
> > posted
> > > > to
> > > > > > > Downtime Notify soon.
>
> > > > > > > -Marzia
>
> > > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > > > > > [EMAIL PROTECTED]> wrote:
>
> > > > > > > > My website works ATM:
> > > > > > > >www.muspy.com
>
> > > > > > > > appengine.google.com returns 404
>
> > > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > > > > > > my main app is returning 404 but some of my other apps are
> > ok...
> > > >  I
> > > > > > > > > cannot deploy because appengine.google.com is also returning
> > 404
>
> > > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]>
> > wrote:
>
> > > > > > > > > > Hi,
>
> > > > > > > > > > This is just a reminder that this evening from 5-6pm PST,
> > you
> > > > will
> > > > > > not
> > > > > > > > > > be able to deploy new application versions.  More details
> > can
> > > > be
> > > > > > found
> > > > > > > > > > here:
>
> > > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > > > > ..
>
> > > > > > > > > > Also, a reminder that all notifications of App Engine
> > downtime,
> > > > > > > > > > planned or otherwise, can be found on the Downtime Notify
> > > > group:
>
> >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > > > > > > > -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Arun Shanker Prasad

Hi,

  My app id is space1. I am putting the parentModel.child_set list
into memcahce.

Thanks,
Arun Shanker Prasad.

On Nov 12, 10:16 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Also, what are you placing in Memcache when your application is showing this
> error?
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 9:15 PM, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > Hi,
>
> > What is the app id that is experiencing this issue?
>
> > -Marzia
>
> > On Tue, Nov 11, 2008 at 9:13 PM, Arun Shanker Prasad <
> > [EMAIL PROTECTED]> wrote:
>
> >> Hi,
> >>       Also the error I got was "PicklingError" during the memcache
> >> set. This was working last night
> >> Thanks,
> >> Arun Shanker Prasad.
>
> >> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> >> > Hi,
>
> >> > Another issue occurred during scheduled maintenance tonight, which is
> >> not
> >> > related to the issue mentioned above.
>
> >> > This issue affected objects stored in Memcache.  If your application was
> >> > affected by this error, you would not have been individually emailed.
>
> >> > If your application is currently experiencing issues, it is most likely
> >> > related to the Memcache issue which our engineering team is currently
> >> > investigating.  You should see an AttributeError in your application's
> >> logs.
>
> >> > We expect this issue will be fixed shortly.
>
> >> > -Marzia
>
> >> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> >> wrote:
>
> >> > > My site (http://www.careercup.com) is down.  I did not get an email.
>
> >> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> >> > > > Hi,
>
> >> > > > Our engineers are working as quickly as possible to restore
> >> > > functionality.
> >> > > > A small number of applications, which include the Admin Console, are
> >> > > > affected by this outage.  If your application was affected, you
> >> should
> >> > > have
> >> > > > received an email directly from our engineers to the developers
> >> listed in
> >> > > > your admin console.
>
> >> > > > -Marzia
>
> >> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> >> > > > > Thanks for the update...
>
> >> > > > > Any chance of helping us get our apps back online?  (rotzy.com)
>
> >> > > > > I can deal with console being down :-)  but my app is 404ing too
> >> :-(
>
> >> > > > > thanks!!
>
> >> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> >> > > > > > Hi,
>
> >> > > > > > The admin console is currently down.  More information will be
> >> posted
> >> > > to
> >> > > > > > Downtime Notify soon.
>
> >> > > > > > -Marzia
>
> >> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> >> > > > > > [EMAIL PROTECTED]> wrote:
>
> >> > > > > > > My website works ATM:
> >> > > > > > >www.muspy.com
>
> >> > > > > > > appengine.google.com returns 404
>
> >> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> >> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> >> > > > > > > > my main app is returning 404 but some of my other apps are
> >> ok...
> >> > >  I
> >> > > > > > > > cannot deploy because appengine.google.com is also
> >> returning 404
>
> >> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]>
> >> wrote:
>
> >> > > > > > > > > Hi,
>
> >> > > > > > > > > This is just a reminder that this evening from 5-6pm PST,
> >> you
> >> > > will
> >> > > > > not
> >> > > > > > > > > be able to deploy new application versions.  More details
> >> can
> >> > > be
> >> > > > > found
> >> > > > > > > > > here:
>
> >> > >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> >> > > > > ..
>
> >> > > > > > > > > Also, a reminder that all notifications of App Engine
> >> downtime,
> >> > > > > > > > > planned or otherwise, can be found on the Downtime Notify
> >> > > group:
>
> >>http://groups.google.com/group/google-appengine-downtime-notify/
>
> >> > > > > > > > > -Marzia
--~--~-~--~~~---~--~~
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: appengine.google.com connection error

2008-11-11 Thread Marzia Niccolai
What are you putting in Memcache when you see this issue?

-Marzia

On Tue, Nov 11, 2008 at 9:15 PM, Efe <[EMAIL PROTECTED]> wrote:

>
> I also have same problem!!!
>
> http://1.latest.denizlispordotcom.appspot.com/
>
>
> On Nov 12, 11:42 am, lws68825 <[EMAIL PROTECTED]> wrote:
> > I got 404 not found error when I connected to appengine.google.com.
> > Anyone can help me?
> >
>

--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Arun Shanker Prasad

Hi,

  Thanks for the notice, I saw the error log about the memcache
issues.. So I rolled out a version without them. When will I be able
to revert to my old version?

Thanks,
Arun Shanker Prasad.

On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Another issue occurred during scheduled maintenance tonight, which is not
> related to the issue mentioned above.
>
> This issue affected objects stored in Memcache.  If your application was
> affected by this error, you would not have been individually emailed.
>
> If your application is currently experiencing issues, it is most likely
> related to the Memcache issue which our engineering team is currently
> investigating.  You should see an AttributeError in your application's logs.
>
> We expect this issue will be fixed shortly.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]> wrote:
>
> > My site (http://www.careercup.com) is down.  I did not get an email.
>
> > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Hi,
>
> > > Our engineers are working as quickly as possible to restore
> > functionality.
> > > A small number of applications, which include the Admin Console, are
> > > affected by this outage.  If your application was affected, you should
> > have
> > > received an email directly from our engineers to the developers listed in
> > > your admin console.
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > > Thanks for the update...
>
> > > > Any chance of helping us get our apps back online?  (rotzy.com)
>
> > > > I can deal with console being down :-)  but my app is 404ing too :-(
>
> > > > thanks!!
>
> > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > > Hi,
>
> > > > > The admin console is currently down.  More information will be posted
> > to
> > > > > Downtime Notify soon.
>
> > > > > -Marzia
>
> > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > > > [EMAIL PROTECTED]> wrote:
>
> > > > > > My website works ATM:
> > > > > >www.muspy.com
>
> > > > > > appengine.google.com returns 404
>
> > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > > > > my main app is returning 404 but some of my other apps are ok...
> >  I
> > > > > > > cannot deploy because appengine.google.com is also returning 404
>
> > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > Hi,
>
> > > > > > > > This is just a reminder that this evening from 5-6pm PST, you
> > will
> > > > not
> > > > > > > > be able to deploy new application versions.  More details can
> > be
> > > > found
> > > > > > > > here:
>
> >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > > ..
>
> > > > > > > > Also, a reminder that all notifications of App Engine downtime,
> > > > > > > > planned or otherwise, can be found on the Downtime Notify
> > group:
> > > > > >http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > > > > > > -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Marzia Niccolai
It seems like this error is most likely caused as the result of pickling a
Query object instead of the results of a query.  Are engineering team is
looking in to this issue.

-Marzia

On Tue, Nov 11, 2008 at 9:20 PM, Arun Shanker Prasad <
[EMAIL PROTECTED]> wrote:

>
> Hi,
>
>  My app id is space1. I am putting the parentModel.child_set list
> into memcahce.
>
> Thanks,
> Arun Shanker Prasad.
>
> On Nov 12, 10:16 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > Also, what are you placing in Memcache when your application is showing
> this
> > error?
> >
> > -Marzia
> >
> > On Tue, Nov 11, 2008 at 9:15 PM, Marzia Niccolai <[EMAIL PROTECTED]>
> wrote:
> > > Hi,
> >
> > > What is the app id that is experiencing this issue?
> >
> > > -Marzia
> >
> > > On Tue, Nov 11, 2008 at 9:13 PM, Arun Shanker Prasad <
> > > [EMAIL PROTECTED]> wrote:
> >
> > >> Hi,
> > >>   Also the error I got was "PicklingError" during the memcache
> > >> set. This was working last night
> > >> Thanks,
> > >> Arun Shanker Prasad.
> >
> > >> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > >> > Hi,
> >
> > >> > Another issue occurred during scheduled maintenance tonight, which
> is
> > >> not
> > >> > related to the issue mentioned above.
> >
> > >> > This issue affected objects stored in Memcache.  If your application
> was
> > >> > affected by this error, you would not have been individually
> emailed.
> >
> > >> > If your application is currently experiencing issues, it is most
> likely
> > >> > related to the Memcache issue which our engineering team is
> currently
> > >> > investigating.  You should see an AttributeError in your
> application's
> > >> logs.
> >
> > >> > We expect this issue will be fixed shortly.
> >
> > >> > -Marzia
> >
> > >> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> > >> wrote:
> >
> > >> > > My site (http://www.careercup.com) is down.  I did not get an
> email.
> >
> > >> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > >> > > > Hi,
> >
> > >> > > > Our engineers are working as quickly as possible to restore
> > >> > > functionality.
> > >> > > > A small number of applications, which include the Admin Console,
> are
> > >> > > > affected by this outage.  If your application was affected, you
> > >> should
> > >> > > have
> > >> > > > received an email directly from our engineers to the developers
> > >> listed in
> > >> > > > your admin console.
> >
> > >> > > > -Marzia
> >
> > >> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
> >
> > >> > > > > Thanks for the update...
> >
> > >> > > > > Any chance of helping us get our apps back online?  (
> rotzy.com)
> >
> > >> > > > > I can deal with console being down :-)  but my app is 404ing
> too
> > >> :-(
> >
> > >> > > > > thanks!!
> >
> > >> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > >> > > > > > Hi,
> >
> > >> > > > > > The admin console is currently down.  More information will
> be
> > >> posted
> > >> > > to
> > >> > > > > > Downtime Notify soon.
> >
> > >> > > > > > -Marzia
> >
> > >> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
> >
> > >> > > > > > [EMAIL PROTECTED]> wrote:
> >
> > >> > > > > > > My website works ATM:
> > >> > > > > > >www.muspy.com
> >
> > >> > > > > > > appengine.google.com returns 404
> >
> > >> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > >> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
> >
> > >> > > > > > > > my main app is returning 404 but some of my other apps
> are
> > >> ok...
> > >> > >  I
> > >> > > > > > > > cannot deploy because appengine.google.com is also
> > >> returning 404
> >
> > >> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]
> >
> > >> wrote:
> >
> > >> > > > > > > > > Hi,
> >
> > >> > > > > > > > > This is just a reminder that this evening from 5-6pm
> PST,
> > >> you
> > >> > > will
> > >> > > > > not
> > >> > > > > > > > > be able to deploy new application versions.  More
> details
> > >> can
> > >> > > be
> > >> > > > > found
> > >> > > > > > > > > here:
> >
> > >> > >
> http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > >> > > > > ..
> >
> > >> > > > > > > > > Also, a reminder that all notifications of App Engine
> > >> downtime,
> > >> > > > > > > > > planned or otherwise, can be found on the Downtime
> Notify
> > >> > > group:
> >
> > >>http://groups.google.com/group/google-appengine-downtime-notify/
> >
> > >> > > > > > > > > -Marzia
> >
>

--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Efe

I'm still getting 404 to my app.
http://1.latest.denizlispordotcom.appspot.com/


On Nov 12, 1:32 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> It seems like this error is most likely caused as the result of pickling a
> Query object instead of the results of a query.  Are engineering team is
> looking in to this issue.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 9:20 PM, Arun Shanker Prasad <
>
> [EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> >  My app id is space1. I am putting the parentModel.child_set list
> > into memcahce.
>
> > Thanks,
> > Arun Shanker Prasad.
>
> > On Nov 12, 10:16 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Also, what are you placing in Memcache when your application is showing
> > this
> > > error?
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 9:15 PM, Marzia Niccolai <[EMAIL PROTECTED]>
> > wrote:
> > > > Hi,
>
> > > > What is the app id that is experiencing this issue?
>
> > > > -Marzia
>
> > > > On Tue, Nov 11, 2008 at 9:13 PM, Arun Shanker Prasad <
> > > > [EMAIL PROTECTED]> wrote:
>
> > > >> Hi,
> > > >>       Also the error I got was "PicklingError" during the memcache
> > > >> set. This was working last night
> > > >> Thanks,
> > > >> Arun Shanker Prasad.
>
> > > >> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > >> > Hi,
>
> > > >> > Another issue occurred during scheduled maintenance tonight, which
> > is
> > > >> not
> > > >> > related to the issue mentioned above.
>
> > > >> > This issue affected objects stored in Memcache.  If your application
> > was
> > > >> > affected by this error, you would not have been individually
> > emailed.
>
> > > >> > If your application is currently experiencing issues, it is most
> > likely
> > > >> > related to the Memcache issue which our engineering team is
> > currently
> > > >> > investigating.  You should see an AttributeError in your
> > application's
> > > >> logs.
>
> > > >> > We expect this issue will be fixed shortly.
>
> > > >> > -Marzia
>
> > > >> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> > > >> wrote:
>
> > > >> > > My site (http://www.careercup.com) is down.  I did not get an
> > email.
>
> > > >> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > >> > > > Hi,
>
> > > >> > > > Our engineers are working as quickly as possible to restore
> > > >> > > functionality.
> > > >> > > > A small number of applications, which include the Admin Console,
> > are
> > > >> > > > affected by this outage.  If your application was affected, you
> > > >> should
> > > >> > > have
> > > >> > > > received an email directly from our engineers to the developers
> > > >> listed in
> > > >> > > > your admin console.
>
> > > >> > > > -Marzia
>
> > > >> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > >> > > > > Thanks for the update...
>
> > > >> > > > > Any chance of helping us get our apps back online?  (
> > rotzy.com)
>
> > > >> > > > > I can deal with console being down :-)  but my app is 404ing
> > too
> > > >> :-(
>
> > > >> > > > > thanks!!
>
> > > >> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > >> > > > > > Hi,
>
> > > >> > > > > > The admin console is currently down.  More information will
> > be
> > > >> posted
> > > >> > > to
> > > >> > > > > > Downtime Notify soon.
>
> > > >> > > > > > -Marzia
>
> > > >> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > >> > > > > > [EMAIL PROTECTED]> wrote:
>
> > > >> > > > > > > My website works ATM:
> > > >> > > > > > >www.muspy.com
>
> > > >> > > > > > > appengine.google.com returns 404
>
> > > >> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > >> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > >> > > > > > > > my main app is returning 404 but some of my other apps
> > are
> > > >> ok...
> > > >> > >  I
> > > >> > > > > > > > cannot deploy because appengine.google.com is also
> > > >> returning 404
>
> > > >> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]
>
> > > >> wrote:
>
> > > >> > > > > > > > > Hi,
>
> > > >> > > > > > > > > This is just a reminder that this evening from 5-6pm
> > PST,
> > > >> you
> > > >> > > will
> > > >> > > > > not
> > > >> > > > > > > > > be able to deploy new application versions.  More
> > details
> > > >> can
> > > >> > > be
> > > >> > > > > found
> > > >> > > > > > > > > here:
>
> >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > >> > > > > ..
>
> > > >> > > > > > > > > Also, a reminder that all notifications of App Engine
> > > >> downtime,
> > > >> > > > > > > > > planned or otherwise, can be found on the Downtime
> > Notify
> > > >> > > group:
>
> > > >>http://groups.google.com/group/google-appengine-downtime-notify/
>
> > > >> > > > > > > > > -Marzia
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" gro

[google-appengine] Re: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread benben

My error Log:

#
11-11 09:43PM 15.731 Traceback (most recent call last):
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/wsgiref/
handlers.py", line 92, in run
#
E 11-11 09:43PM 15.731 self.result = application(self.environ,
self.start_response)
#
E 11-11 09:43PM 15.731 File "/base/python_lib/versions/1/google/
appengine/ext/webapp/__init__.py", line 515, in __call__
#
E 11-11 09:43PM 15.731 handler.handle_exception(e, self.__debug)
#
E 11-11 09:43PM 15.731 File "/base/python_lib/versions/1/google/
appengine/ext/webapp/__init__.py", line 381, in handle_exception
#
E 11-11 09:43PM 15.731 self.error(500)
#
E 11-11 09:43PM 15.731 File "/base/data/home/apps/udog/
2.329226735080474139/main.py", line 42, in error
#
E 11-11 09:43PM 15.731 self.render('themes/benben/404.html',
template_value)
#
E 11-11 09:43PM 15.731 File "/base/data/home/apps/udog/
2.329226735080474139/main.py", line 21, in render
#
E 11-11 09:43PM 15.731 template_value['links']=DB.getLinkAll()
#
E 11-11 09:43PM 15.731 File "/base/data/home/apps/udog/
2.329226735080474139/cache.py", line 13, in wrapper
#
E 11-11 09:43PM 15.731 memcache.set(key, data, time)
#
E 11-11 09:43PM 15.731 File "/base/python_lib/versions/1/google/
appengine/api/memcache/__init__.py", line 539, in set
#
E 11-11 09:43PM 15.731 return self._set_with_policy
(MemcacheSetRequest.SET, key, value, time=time)
#
E 11-11 09:43PM 15.731 File "/base/python_lib/versions/1/google/
appengine/api/memcache/__init__.py", line 602, in _set_with_policy
#
E 11-11 09:43PM 15.731 stored_value, flags = _validate_encode_value
(value, self._do_pickle)
#
E 11-11 09:43PM 15.731 File "/base/python_lib/versions/1/google/
appengine/api/memcache/__init__.py", line 170, in
_validate_encode_value
#
E 11-11 09:43PM 15.731 stored_value = do_pickle(value)
#
E 11-11 09:43PM 15.731 File "/base/python_lib/versions/1/google/
appengine/api/memcache/__init__.py", line 274, in DoPickle
#
E 11-11 09:43PM 15.731 self._pickler_instance.dump(value)
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 218, in dump
#
E 11-11 09:43PM 15.731 self.save(obj)
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 325, in save
#
E 11-11 09:43PM 15.731 self.save_reduce(obj=obj, *rv)
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 413, in save_reduce
#
E 11-11 09:43PM 15.731 save(state)
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 280, in save
#
E 11-11 09:43PM 15.731 f(self, obj) # Call unbound method with
explicit self
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 643, in save_dict
#
E 11-11 09:43PM 15.731 self._batch_setitems(obj.iteritems())
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 675, in _batch_setitems
#
E 11-11 09:43PM 15.731 save(v)
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 325, in save
#
E 11-11 09:43PM 15.731 self.save_reduce(obj=obj, *rv)
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 390, in save_reduce
#
E 11-11 09:43PM 15.731 save(cls)
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 280, in save
#
E 11-11 09:43PM 15.731 f(self, obj) # Call unbound method with
explicit self
#
E 11-11 09:43PM 15.731 File "/base/python_dist/lib/python2.5/
pickle.py", line 742, in save_global
#
E 11-11 09:43PM 15.731 (obj, module, name))
#
E 11-11 09:43PM 15.731 PicklingError: Can't pickle : it's not found as __builtin__.instancemethod


On 11月12日, 上午4时53分, "Marce (Google)" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> This is just a reminder that this evening from 5-6pm PST, you will not
> be able to deploy new application versions.  More details can be found
> here:http://groups.google.com/group/google-appengine-downtime-notify/brows...
>
> Also, a reminder that all notifications of App Engine downtime,
> planned or otherwise, can be found on the Downtime Notify 
> group:http://groups.google.com/group/google-appengine-downtime-notify/
>
> -Marzia
--~--~-~--~~~---~--~~
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: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Arun Shanker Prasad

Hi,

 Regarding you option to set the value as a list this is not causing
any issue and got it working by changing the code. Was this modified
during the current modification? Because I can still get the same code
to work in the SDK..

Thanks,
Arun Shanker Prasad.

On Nov 12, 10:32 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> It seems like this error is most likely caused as the result of pickling a
> Query object instead of the results of a query.  Are engineering team is
> looking in to this issue.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 9:20 PM, Arun Shanker Prasad <
>
> [EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> >  My app id is space1. I am putting the parentModel.child_set list
> > into memcahce.
>
> > Thanks,
> > Arun Shanker Prasad.
>
> > On Nov 12, 10:16 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > Also, what are you placing in Memcache when your application is showing
> > this
> > > error?
>
> > > -Marzia
>
> > > On Tue, Nov 11, 2008 at 9:15 PM, Marzia Niccolai <[EMAIL PROTECTED]>
> > wrote:
> > > > Hi,
>
> > > > What is the app id that is experiencing this issue?
>
> > > > -Marzia
>
> > > > On Tue, Nov 11, 2008 at 9:13 PM, Arun Shanker Prasad <
> > > > [EMAIL PROTECTED]> wrote:
>
> > > >> Hi,
> > > >>       Also the error I got was "PicklingError" during the memcache
> > > >> set. This was working last night
> > > >> Thanks,
> > > >> Arun Shanker Prasad.
>
> > > >> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > >> > Hi,
>
> > > >> > Another issue occurred during scheduled maintenance tonight, which
> > is
> > > >> not
> > > >> > related to the issue mentioned above.
>
> > > >> > This issue affected objects stored in Memcache.  If your application
> > was
> > > >> > affected by this error, you would not have been individually
> > emailed.
>
> > > >> > If your application is currently experiencing issues, it is most
> > likely
> > > >> > related to the Memcache issue which our engineering team is
> > currently
> > > >> > investigating.  You should see an AttributeError in your
> > application's
> > > >> logs.
>
> > > >> > We expect this issue will be fixed shortly.
>
> > > >> > -Marzia
>
> > > >> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> > > >> wrote:
>
> > > >> > > My site (http://www.careercup.com) is down.  I did not get an
> > email.
>
> > > >> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > >> > > > Hi,
>
> > > >> > > > Our engineers are working as quickly as possible to restore
> > > >> > > functionality.
> > > >> > > > A small number of applications, which include the Admin Console,
> > are
> > > >> > > > affected by this outage.  If your application was affected, you
> > > >> should
> > > >> > > have
> > > >> > > > received an email directly from our engineers to the developers
> > > >> listed in
> > > >> > > > your admin console.
>
> > > >> > > > -Marzia
>
> > > >> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > >> > > > > Thanks for the update...
>
> > > >> > > > > Any chance of helping us get our apps back online?  (
> > rotzy.com)
>
> > > >> > > > > I can deal with console being down :-)  but my app is 404ing
> > too
> > > >> :-(
>
> > > >> > > > > thanks!!
>
> > > >> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > >> > > > > > Hi,
>
> > > >> > > > > > The admin console is currently down.  More information will
> > be
> > > >> posted
> > > >> > > to
> > > >> > > > > > Downtime Notify soon.
>
> > > >> > > > > > -Marzia
>
> > > >> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > >> > > > > > [EMAIL PROTECTED]> wrote:
>
> > > >> > > > > > > My website works ATM:
> > > >> > > > > > >www.muspy.com
>
> > > >> > > > > > > appengine.google.com returns 404
>
> > > >> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > >> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > >> > > > > > > > my main app is returning 404 but some of my other apps
> > are
> > > >> ok...
> > > >> > >  I
> > > >> > > > > > > > cannot deploy because appengine.google.com is also
> > > >> returning 404
>
> > > >> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL PROTECTED]
>
> > > >> wrote:
>
> > > >> > > > > > > > > Hi,
>
> > > >> > > > > > > > > This is just a reminder that this evening from 5-6pm
> > PST,
> > > >> you
> > > >> > > will
> > > >> > > > > not
> > > >> > > > > > > > > be able to deploy new application versions.  More
> > details
> > > >> can
> > > >> > > be
> > > >> > > > > found
> > > >> > > > > > > > > here:
>
> >http://groups.google.com/group/google-appengine-downtime-notify/brows.
> > > >> > > > > ..
>
> > > >> > > > > > > > > Also, a reminder that all notifications of App Engine
> > > >> downtime,
> > > >> > > > > > > > > planned or otherwise, can be found on the Downtime
> > Notify
> > > >> > > group:
>
> > > >>http://groups.google.com/group/google-appengine-downtime-notify

[google-appengine] Re: Reminder: Scheduled Maintenance This Evening

2008-11-11 Thread Arun Shanker Prasad

Hi,

  Still getting the same error even with setting the value in a list.

Thanks,
Arun Shanker Prasad.

On Nov 12, 11:22 am, Arun Shanker Prasad <[EMAIL PROTECTED]>
wrote:
> Hi,
>
>  Regarding you option to set the value as a list this is not causing
> any issue and got it working by changing the code. Was this modified
> during the current modification? Because I can still get the same code
> to work in the SDK..
>
> Thanks,
> Arun Shanker Prasad.
>
> On Nov 12, 10:32 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
>
> > It seems like this error is most likely caused as the result of pickling a
> > Query object instead of the results of a query.  Are engineering team is
> > looking in to this issue.
>
> > -Marzia
>
> > On Tue, Nov 11, 2008 at 9:20 PM, Arun Shanker Prasad <
>
> > [EMAIL PROTECTED]> wrote:
>
> > > Hi,
>
> > >  My app id is space1. I am putting the parentModel.child_set list
> > > into memcahce.
>
> > > Thanks,
> > > Arun Shanker Prasad.
>
> > > On Nov 12, 10:16 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > Also, what are you placing in Memcache when your application is showing
> > > this
> > > > error?
>
> > > > -Marzia
>
> > > > On Tue, Nov 11, 2008 at 9:15 PM, Marzia Niccolai <[EMAIL PROTECTED]>
> > > wrote:
> > > > > Hi,
>
> > > > > What is the app id that is experiencing this issue?
>
> > > > > -Marzia
>
> > > > > On Tue, Nov 11, 2008 at 9:13 PM, Arun Shanker Prasad <
> > > > > [EMAIL PROTECTED]> wrote:
>
> > > > >> Hi,
> > > > >>       Also the error I got was "PicklingError" during the memcache
> > > > >> set. This was working last night
> > > > >> Thanks,
> > > > >> Arun Shanker Prasad.
>
> > > > >> On Nov 12, 9:54 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > >> > Hi,
>
> > > > >> > Another issue occurred during scheduled maintenance tonight, which
> > > is
> > > > >> not
> > > > >> > related to the issue mentioned above.
>
> > > > >> > This issue affected objects stored in Memcache.  If your 
> > > > >> > application
> > > was
> > > > >> > affected by this error, you would not have been individually
> > > emailed.
>
> > > > >> > If your application is currently experiencing issues, it is most
> > > likely
> > > > >> > related to the Memcache issue which our engineering team is
> > > currently
> > > > >> > investigating.  You should see an AttributeError in your
> > > application's
> > > > >> logs.
>
> > > > >> > We expect this issue will be fixed shortly.
>
> > > > >> > -Marzia
>
> > > > >> > On Tue, Nov 11, 2008 at 8:24 PM, Gayle Laakmann <[EMAIL PROTECTED]>
> > > > >> wrote:
>
> > > > >> > > My site (http://www.careercup.com) is down.  I did not get an
> > > email.
>
> > > > >> > > On Nov 11, 7:44 pm, Marzia Niccolai <[EMAIL PROTECTED]> wrote:
> > > > >> > > > Hi,
>
> > > > >> > > > Our engineers are working as quickly as possible to restore
> > > > >> > > functionality.
> > > > >> > > > A small number of applications, which include the Admin 
> > > > >> > > > Console,
> > > are
> > > > >> > > > affected by this outage.  If your application was affected, you
> > > > >> should
> > > > >> > > have
> > > > >> > > > received an email directly from our engineers to the developers
> > > > >> listed in
> > > > >> > > > your admin console.
>
> > > > >> > > > -Marzia
>
> > > > >> > > > On Tue, Nov 11, 2008 at 7:26 PM, Gee <[EMAIL PROTECTED]> wrote:
>
> > > > >> > > > > Thanks for the update...
>
> > > > >> > > > > Any chance of helping us get our apps back online?  (
> > > rotzy.com)
>
> > > > >> > > > > I can deal with console being down :-)  but my app is 404ing
> > > too
> > > > >> :-(
>
> > > > >> > > > > thanks!!
>
> > > > >> > > > > On Nov 11, 7:09 pm, Marzia Niccolai <[EMAIL PROTECTED]> 
> > > > >> > > > > wrote:
> > > > >> > > > > > Hi,
>
> > > > >> > > > > > The admin console is currently down.  More information will
> > > be
> > > > >> posted
> > > > >> > > to
> > > > >> > > > > > Downtime Notify soon.
>
> > > > >> > > > > > -Marzia
>
> > > > >> > > > > > On Tue, Nov 11, 2008 at 7:03 PM, Alexander Kojevnikov <
>
> > > > >> > > > > > [EMAIL PROTECTED]> wrote:
>
> > > > >> > > > > > > My website works ATM:
> > > > >> > > > > > >www.muspy.com
>
> > > > >> > > > > > > appengine.google.com returns 404
>
> > > > >> > > > > > > On Nov 12, 1:56 pm, Gee <[EMAIL PROTECTED]> wrote:
> > > > >> > > > > > > > 6:55pm - is appengine.google.com down for anyone else?
>
> > > > >> > > > > > > > my main app is returning 404 but some of my other apps
> > > are
> > > > >> ok...
> > > > >> > >  I
> > > > >> > > > > > > > cannot deploy because appengine.google.com is also
> > > > >> returning 404
>
> > > > >> > > > > > > > On Nov 11, 12:53 pm, "Marce (Google)" <[EMAIL 
> > > > >> > > > > > > > PROTECTED]
>
> > > > >> wrote:
>
> > > > >> > > > > > > > > Hi,
>
> > > > >> > > > > > > > > This is just a reminder that this evening from 5-6pm
> > > PST,
> > > > >> you
> > > > >> > > will
> > > > >> > > > > not
> > > > >> > > > > > > > > be able to deploy new application versions. 

[google-appengine] Re: reference property and pickle

2008-11-11 Thread Jonk

On 11 marras, 15:05, gops <[EMAIL PROTECTED]> wrote:

> In my application i frequently need "userpreference". So I am
> memcacheing it using pickle.


Ok thanks, got that. I don't have any answers, though :)


jK


--~--~-~--~~~---~--~~
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 fix pickling error

2008-11-11 Thread benben

First ,thanks Marzia Niccolai for his email  .

Today ,my app get picklingerror. Lot's of those errors in admin
control panel .
“PicklingError: Can't pickle : it's not found
as __builtin__.instancemethod”

This error throw  out when set a query object into memcache .

Do not use " Link.all().order('-weight')" to get all the data in Link
table , just use "Link.gql('ORDER BY weight desc').fetch(100)". it
will fix this error .

good luck .
--~--~-~--~~~---~--~~
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: reference property and pickle

2008-11-11 Thread gops

ok , here is clear question from what i understood

suppose a model have reference property nambe b.

if i do

c = a.b

gae behind the scene fetch the entity that is referenced by the key b
and make it available to c. { while b is actually the key }

but if i pickle a , for e.g. with following code.

a = db.get(key_of_a)
c = pickle.dumps(a)
d = pickle.loads(c)
e = c.b # will gae fetch b behind the scene or it is already available
as an instance. ??

what is c.b after pickle loads function? -- will it be key instance ?
or c.b is an entity instance.

Thanks for those who have replied. :D

--~--~-~--~~~---~--~~
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: reference property and pickle

2008-11-11 Thread gops

sorry typo in above post in code in last line ,

a = db.get(key_of_a)
c = pickle.dumps(a)
d = pickle.loads(c)
e = d.b # will gae fetch b behind the scene or it is already available
as an instance. ??
--~--~-~--~~~---~--~~
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: create an application

2008-11-11 Thread jun

Thanks! It's working now.

Marzia Niccolai wrote:
> Hi,
>
> I have fixed the issue.  You should now be able to create additional
> applications.
>
> -Marzia
>
> On Tue, Nov 11, 2008 at 4:07 AM, jun <[EMAIL PROTECTED]> wrote:
>
> >
> > hello, I would like to create another application in google app
> > engine. It keeps on saying to verify thru SMS, but it has already been
> > verified before. how do I go about this?
> >
> > >
> >
--~--~-~--~~~---~--~~
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: reference property and pickle

2008-11-11 Thread gops

Ok , What seems logical is , it won't pickle the entity instance ,
instead it just pickle the key , ( because , if there is a reference
property in to that reference property , the chain reaction could make
pickle whole the database.. :D ).

On Nov 12, 12:43 pm, gops <[EMAIL PROTECTED]> wrote:
> sorry typo in above post in code in last line ,
>
> a = db.get(key_of_a)
> c = pickle.dumps(a)
> d = pickle.loads(c)
> e = d.b # will gae fetch b behind the scene or it is already available
> as an instance. ??
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---