[google-appengine] Re: How can I login with my Team Edition account through create_login_url

2009-01-15 Thread Alexander Kojevnikov
When you create an App Engine account, you have an option to restrict access to your app only for the members of a certain Google Apps domain: http://code.google.com/appengine/articles/auth.html As far as I know you cannot have both the Google accounts and the Google Apps accounts to authenticate

[google-appengine] Re: Looking for help to finish a new model to catch datastore timeouts

2009-01-15 Thread Alexander Kojevnikov
> Oh ok.. so it is possible to catch that. It's datastore.Timeout and > not db.Timeout, right? I was confused because when I see it in the > logs I saw: raise _ToDatastoreError(err), so I wasn't sure how to > catch it since that exception covers pretty much any issue with > writing to the datastor

[google-appengine] Re: Ideas for hands-on AppEngine demo?

2009-01-15 Thread Alexander Kojevnikov
You can also host a "Hackathon In a Box", Google provides all presentation materials for these events: http://sites.google.com/site/hackathoninabox/Home On Jan 16, 6:28 am, "Faber Fedor" wrote: > Hi guys, > > The New York City Cloud Computing > Grouphas

[google-appengine] Re: How to match in query?

2009-01-15 Thread Alexander Kojevnikov
> I am messing with google app engine queries being very new to it > how can we match a string with __key__ > 'SELECT * FROM Person WHERE __key__=:bkey', bkey=str(value) > This query is not working > What is wrong with this? > You need to pass an instance of db.Key class as a parameter. Is 'value

[google-appengine] Re: How to get url from fetchurl?

2009-01-17 Thread Alexander Kojevnikov
> I want to know actual url, where i'm via fetchurl. Something like > geturl in urllib2. > > for example if i've follow_redirects=True, then i want to know which > url is the ending one. > The corresponding issue 404 [1] is fixed however I don't see how we can retrieve the final URL. The headers p

[google-appengine] Re: Having trouble with Django model.objects

2009-01-18 Thread Alexander Kojevnikov
Dave, I suggest that you give app-engine-patch [1] a try. It's the same Django we all love, but uses GAE Models for datastore access. You can use django.contrib.auth with it, in fact the patch has extra support for user authentication, check out this [2] page. If you include 'django.contrib.auth

[google-appengine] Re: Fetch timeout

2009-01-18 Thread Alexander Kojevnikov
Star this issue: http://code.google.com/p/googleappengine/issues/detail?id=79 On Jan 19, 10:17 am, ehmo wrote: > Is any chance to get bigger timeout? I'm working on one little > service, where i need check a site and get his title. However it's > impossible, because it's not always fast and i ne

[google-appengine] Re: Fetch callback

2009-01-19 Thread Alexander Kojevnikov
Are you trying to run this from the SDK? If so, the SDK cannot serve more than one request at a time. A workaround is described in the documentation: http://code.google.com/appengine/docs/python/tools/devserver.html#Using_URL_Fetch On Jan 19, 12:54 pm, ehmo wrote: > Hey guys, > i'm trying to do

[google-appengine] Re: "Ancestor is" performance

2009-01-19 Thread Alexander Kojevnikov
> The measured "ms-cpu" in the request logs comes out WAY smaller for > the "ANCESTOR IS" query (roughly 3,000ms-cpu vs. 30,000 ms-cpu for > 1,000 entities, and roughly this same ratio for smaller queries) > > Does anyone have any thoughts on this?  Did I mess something up, or is > there something

[google-appengine] Re: Can't Sign In

2009-01-19 Thread Alexander Kojevnikov
Are you using a Google Apps email to sign in? If you are, you should use this URL: http://appengine.google.com/a// On Jan 20, 5:48 am, Matt wrote: > Hi! > > For the past 4 hours or so, I haven't been able to sign into my Google > App Engine account. > > After entering my Google Account informati

[google-appengine] Re: 50% of requests to gae lost

2009-01-20 Thread Alexander Kojevnikov
See the last question in the community FAQ: http://knol.google.com/k/marce/app-engine-community-faqs/vkzeph4si12v/1# On Jan 21, 8:59 am, ten_foot_ninja wrote: > Hello, > I am using a Flash client to connect to GAE and am noticing about half > of my requests seems to disappear. Looking at my app

[google-appengine] Re: is gaeutilities sessions the only 3rd party session manager?

2009-01-20 Thread Alexander Kojevnikov
> can anyone recommend / mention a session manager other than the one in > gaeutilities? app-engine-patch [1] supports Django sessions [2] [1] http://code.google.com/p/app-engine-patch/ [2] http://docs.djangoproject.com/en/dev/topics/http/sessions/ --~--~-~--~~~---~--

[google-appengine] Re: No cell phone

2009-01-21 Thread Alexander Kojevnikov
> I want to sign up for Google app engine. I have no cell phone.. > How do I sign up without using cell phone number? Fill out the SMS issues form: http://appengine.google.com/waitlist/sms_issues --~--~-~--~~~---~--~~ You received this message because you are subs

[google-appengine] Re: sanitizing user submitted HTML

2009-01-21 Thread Alexander Kojevnikov
You can port this code [1] from C# to Python, shouldn't take long. The code is used on the StackOverflow [2] website for exactly the same purposes as yours. [1] http://refactormycode.com/codes/333-sanitize-html [2] http://stackoverflow.com/ On Jan 22, 9:47 am, Dave wrote: > There must be an eas

[google-appengine] Re: can't deploy index.yaml

2009-01-21 Thread Alexander Kojevnikov
The indentation looks strange, do you use tabs? AFAIK tabs are not allowed in yaml. Try this: indexes: - kind: Note properties: - name: __searchable_text_index - name: create_date_time direction: desc On Jan 22, 1:34 pm, jones34 wrote: > This is the whole thing: > > indexes: > - kind

[google-appengine] Re: Django, including a file

2009-01-23 Thread Alexander Kojevnikov
> Has anyone got include working? I've been searching everywhere but > find any simple examples of AppEngine including templates! > {% include %} works for me, I'm using app-engine-patch. Which version of Django do you use? What is your folder structure, where the templates are kept (both the par

[google-appengine] Re: How to append to BlobProperty

2009-01-23 Thread Alexander Kojevnikov
db.Blob is a subclass of str. Try this code: class Storage(db.Model): blob = db.BlobProperty() def append(self, value): self.blob += value s = Storage() s.blob = 'abc' s.append('def') s.put() On Jan 24, 3:20 am, Will wrote: > Hi all, > > I'd like to append a byte string to a

[google-appengine] Re: handling timezones - problem using sample code

2009-01-24 Thread Alexander Kojevnikov
Replace 'datetime_module' with 'datetime' everywhere and add this line on top of your Python file: import datetime On Jan 25, 12:18 pm, jones34 wrote: > I'm trying to use timezones in my app. I understand the GAE decided > that this isn't something they really want to support well.  I'm > tryi

[google-appengine] Re: Can I download my own script?

2009-01-24 Thread Alexander Kojevnikov
See the first question in the Community FAQ: http://knol.google.com/k/-/app-engine-community-faqs/vkzeph4si12v/1 On Jan 25, 3:53 pm, DaNmarner wrote: > I accidentally deleted one of my script(using mv in linux) from my > hard drive, and I don't have a copy of it. Is there anyway I can get > it f

[google-appengine] Re: Django, including a file

2009-01-25 Thread Alexander Kojevnikov
s the parent and > template in the root directory and also a copy of the template in / > templates. > > Would getting the latest Django be necessary? Or do I just need to > tweak things? > > Thanks, > Lster > > On Jan 24, 2:01 am, Alexander Kojevnikov > wrote:

[google-appengine] Re: handling timezones - problem using sample code

2009-01-25 Thread Alexander Kojevnikov
> Thanks,  but it still doesn't work. How do you convert the gae > timestamp?  It doesn't understand astimezone. > 'astimezone' is a method of datetime.datetime class. Which type is your 'utc_time' variable? Could you post the code where it's initialised? --~--~-~--~~~-

[google-appengine] Re: How to append to BlobProperty

2009-01-26 Thread Alexander Kojevnikov
> No, doesn't work. I got > > unsupported operand type(s) for +=: 'BlobProperty' and 'str' > > Same as before. > Could you post here all related code, including the construction of a Storage entity? --~--~-~--~~~---~--~~ You received this message because you are sub

[google-appengine] Re: How to append to BlobProperty

2009-01-27 Thread Alexander Kojevnikov
    .. > >      def write(self, content):   # append >         self.__storage.append(content) >         self.size = len(self.__storage.content) > > Thanks, > > Will > > On Tue, Jan 27, 2009 at 7:47 AM, Alexander Kojevnikov < > > alexan...@kojevnikov.com>

[google-appengine] Re: Django, including a file

2009-01-27 Thread Alexander Kojevnikov
ot.com/readdoc?id=12480 > > Thanks again for the continued help! :) > > On Jan 26, 12:19 am, Alexander Kojevnikov > wrote: > > > Please post here your templates and also the app.yaml file, you can > > use dpaste as @theillustratedlife has suggested. > > > On Ja

[google-appengine] Re: How to append to BlobProperty

2009-01-27 Thread Alexander Kojevnikov
le keeping the definition in the class body, I got > > Property content must be convertible to a Blob instance (Blob() argument > should be str instance, not BlobProperty) > > Seems this time* content* was constructed but in __init__() somehow it > wanted to initialize it by a Blo

[google-appengine] Re: Assigning key_name for Expando object

2009-01-28 Thread Alexander Kojevnikov
> Instead of assigning key_name using constructor,is it possible to > assign key_name after creating the Expando object. > You should specify the key_name using constructor. If you don't, a system-generated numeric ID will be used instead. Also, you cannot change the key_name after the entity is s

[google-appengine] Re: Difference between urls.py and app.yaml

2009-01-28 Thread Alexander Kojevnikov
If you use app-engine-patch to run Django, you should add this at the bottom of your app.yaml: - url: /.* script: common/appenginepatch/main.py The rest of your app.yaml is for static files. And urls.py is for all non-static handlers. On Jan 28, 9:22 pm, arnie wrote: > What is the difference

[google-appengine] Re: Does the dev_appserver.py serve requests one by one?

2009-01-28 Thread Alexander Kojevnikov
Yes, the development server can serve only one request at a time: http://code.google.com/appengine/docs/python/tools/devserver.html#Using_URL_Fetch On Jan 28, 9:03 pm, 3x3x3 wrote: > I run dev_appserver.py in Windows. > I add time.sleep(10) in one of my scripts and send request to that > script

[google-appengine] Re: Does the dev_appserver.py serve requests one by one?

2009-01-28 Thread Alexander Kojevnikov
_ah/admin/datastore. > But I could NOT see the entity via the second dev_appserver instance > consolehttp://localhost:9000/_ah/admin/datastore. > > Am I using dev_appserver in a wrong way? > > On Jan 28, 9:25 pm, Alexander Kojevnikov > wrote: > > > Yes, the development serve

[google-appengine] Re: Does the dev_appserver.py serve requests one by one?

2009-01-28 Thread Alexander Kojevnikov
erves only one request at a time and > running multiple server instances could not see datastore update each > other. > > Is there any other way to test above scenario on local dev_appserver ? > > On Jan 29, 10:42 am, Alexander Kojevnikov > wrote: > > > Just tried it and indee

[google-appengine] Re: Does the dev_appserver.py serve requests one by one?

2009-01-28 Thread Alexander Kojevnikov
> New issue is filed. > > http://code.google.com/p/googleappengine/issues/detail?id=1024 > Thanks, I starred it! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send

[google-appengine] Re: Assigning key_name for Expando object

2009-01-28 Thread Alexander Kojevnikov
> I understand we won't be able to change the key_name after saving, > Is it possible to set the key_name via some function call rather then > setting via constructor(Before Saving),So that i can able to use > get_by_key_name() once it is saved. > Looking at the source code it appears that you can

[google-appengine] Re: please help with special characters

2009-01-29 Thread Alexander Kojevnikov
http://www.python.org/doc/2.5.2/ref/strings.html On Jan 30, 7:36 am, Aramaki wrote: > Hi, my code needs to trim special characters from users imput but > there is one I can't > > how can I trim '\' from a string without error > > chr(92) doesn't work, ord () throw an error when facing ' \ ' and

[google-appengine] Re: Django for google app engine sdk 1.1.7

2009-02-01 Thread Alexander Kojevnikov
On Jan 31, 5:10 pm, arnie wrote: > Hi > I have installed google app engine sdk version 1.1.7 on windows xp. I > want to use django web framework for developing wsgi application. For > this, do I need to do a seperate installation for django or will SDK > do all the things for me. As I need to wor

[google-appengine] Re: Disappearing reference collections

2009-02-01 Thread Alexander Kojevnikov
On Feb 2, 12:15 pm, James wrote: > It appears as if this is occurring when I'm not importing the Comment > model. This might be mentioned in the docs, but I've been developing > with GAE for a while and didn't know that it was necessary to import > the model of the referred entity kind. > The Com

[google-appengine] Re: Python 2.5.4 or Python 2.6.1?

2009-02-01 Thread Alexander Kojevnikov
On Feb 2, 10:29 am, Mazerati wrote: > I'm just starting out and wondering which Python version to download > for use with the AppEngine SDK.  Python 2.5.4 or Python 2.6.1? The SDK requires Python 2.5.x. Star this issue if you want Python 2.6 support: http://code.google.com/p/googleappengine/issu

[google-appengine] Re: Please Help - SMS message not received to set up an account and I don't know how to contact Google.

2009-02-01 Thread Alexander Kojevnikov
On Feb 2, 3:23 am, mattc wrote: > Please help. I have spent the past week learning Python and reading > all the App Engine documentation and viewing all of the videos, now I > want to upload an app and get started, but I do not receive an > Authentication Code via SMS when I enter my mobile numbe

[google-appengine] Re: Project works locally but can't read the required files when its deployed.

2009-02-01 Thread Alexander Kojevnikov
On Feb 1, 8:04 pm, V1 wrote: > As far i understood, App Engine could read files, but not write. So i > see no reason why this should work. App Engine cannot read static files. You should copy or symlink the files you need to read to a non-static directory. --~--~-~--~~~--

[google-appengine] Re: How to append to BlobProperty

2009-02-01 Thread Alexander Kojevnikov
On Feb 2, 6:02 pm, Will wrote: > Thanks, it finally worked. Following your suggestion, what I did is: > > 1. in class body, define: >      content = db.BlobProperty(required=False)            # notice required > is set to False > > 2. in __init__(arg1, arg2, ...): >      self.content = '' > > The

[google-appengine] Re: Unable to access my admin console, Yes i have read the Docs and FAQ ;)

2009-02-02 Thread Alexander Kojevnikov
On Feb 2, 9:38 pm, V1 wrote: > Seems i cant post screenshots..http://tinyurl.com/logindisplay > > ^ above link points to screenshot. > > On Feb 2, 11:37 am, V1 wrote: > I had this problem once, clearing the cookies fixed it for me. --~--~-~--~~~---~--~~ You receiv

[google-appengine] Re: "This application ID or version is already in use" Error

2009-02-02 Thread Alexander Kojevnikov
On Feb 3, 8:52 am, Sagie Maoz wrote: > Boson, your workaround seemed to solve my problem. Thanks! > > Is there a way to report this to the Google team? > File an issue: http://code.google.com/p/googleappengine/issues/entry --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: BadValueError: Property fAmount must be a str or unicode instance, not a float

2009-02-02 Thread Alexander Kojevnikov
On Feb 3, 11:11 am, Mark wrote: > My app is working fine locally on dev_appserver, but I am getting the > error in the subject line after I do an "appcfg update". > > The error occurs on a query that happens on the welcome page of the > app. > > I think I uploaded a version that had FloatProperty

[google-appengine] Re: Proper way to handle DownloadError: ApplicationError: 5

2009-02-03 Thread Alexander Kojevnikov
On Feb 4, 1:08 pm, MajorProgamming wrote: > Is this the proper way to handle Download Errors from urlfetch (which > happen quite often in my app)? > > try: >   result = urlfetch.fetch(url=url) > except DownloadError: >   #return an error > > Basically a coding/python question > Yes, just don'

[google-appengine] Re: code project svn initialization

2009-02-03 Thread Alexander Kojevnikov
You will probably get better response on the Google Code support site: http://code.google.com/p/support/ They've got two groups, look for the links on the right. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Goo

[google-appengine] Re: Cant access applications page!

2009-02-04 Thread Alexander Kojevnikov
On Feb 5, 11:12 am, Andrejus wrote: > Hello, > > I have just created Google Account for app engine. I can login to > appspot.com and create new application, but after creation I am > redirected to the start page where I see only "Create an Application" > button, I cant see my newly created apps!

[google-appengine] Re: Use GAE APIs outside of dev_appserver?

2009-02-05 Thread Alexander Kojevnikov
On Feb 6, 4:57 am, Joel wrote: > I'd like to do some debugging/development in python directly, yet use > the google APIs. > I've got a test directory with the 'google' directory (from the > google_appengine directory) underneath it. > I can import, such as: from google.appengine.api import urlfet

[google-appengine] Re: how can i buy data store more than 500MB?

2009-02-05 Thread Alexander Kojevnikov
On Feb 6, 12:18 pm, freeanderson wrote: > hello? > > how can i buy the data store more than 500MB? > > where is the billing page? > > thank you. > > Andy Billing is still in the works. You can apply for additional storage quota here: http://code.google.com/support/bin/request.py?contact_type=App

[google-appengine] Re: how to submit form from static index.html

2009-02-06 Thread Alexander Kojevnikov
On Feb 6, 7:58 pm, rakf1 wrote: > Is there a way to just send mail and not redirect the page? > > I'm trying to send mail using a ajax popup window, so I want to submit > and write a message in a , and dont want the page to reload/ > redirect. > You can write a handler that sends an email, and PO

[google-appengine] Re: "DownloadError: ApplicationError: 2 timed out" when fetching something from localhost

2009-02-06 Thread Alexander Kojevnikov
On Feb 7, 6:00 am, reyjexter wrote: > I'm developing a client/server application. What i'm trying to do is > fetch a certain url but im getting the error above. This is my code: > > from google.appengine.api import urlfetch > url = 'http://localhost:8081/serversample' > response = urlfetch.fetch(

[google-appengine] Re: How to keep datastore consistency?

2009-02-06 Thread Alexander Kojevnikov
On Feb 6, 3:47 am, Larry wrote: > My question is: what is the most effective and fastest way to handle > these requests while ensuring that no request is lost and no request > creates two VoteRecord objects? You can use a key_name for your VoteRecord entities which is based on the ID of the user

[google-appengine] Re: Detect HTTPS so we can charge?

2009-02-06 Thread Alexander Kojevnikov
On Feb 7, 6:56 am, Nash-t wrote: > It is great that App Engine allows Https connections and from my > limited experience it seems to work really well. Since we have such a > small quota for https connections, I would like to be able to restrict > those connections to certain users. Is there a way

[google-appengine] Re: How to get the server running

2009-02-07 Thread Alexander Kojevnikov
On Feb 8, 4:20 am, "andre...@strombacks.se" wrote: > The first I tried was in the Python GUI and in the Python command > line, and there is where I get the "syntax error" messages. You should start the development server from the command prompt, not from the Python interpreter. --~--~-~

[google-appengine] Re: does GAE have pycrypto?

2009-02-07 Thread Alexander Kojevnikov
On Feb 8, 8:23 am, Anthony wrote: > Thanks, that's what I've been doing locally.  So I suppose when I > deploy to the GAE server, I should bundle all non-standard libraries > with my application files? > Yes, as long as they are pure-Python libraries. If a library uses C extensions, you cannot ru

[google-appengine] Re: prepopulate form fields according to http get parameters

2009-02-08 Thread Alexander Kojevnikov
On Feb 8, 6:56 pm, niklasr wrote: > I'm looking for template tags or similar that according to http get > request parameters set the corresponding html form fields. To achieve > the selection of an html option and populate a textfield according to > the http request parameters where http get with

[google-appengine] Re: Download code

2009-02-09 Thread Alexander Kojevnikov
On Feb 10, 5:19 am, Kaiser wrote: > Anybody knows how can I download all the files of a project from GAE? > Is it possible? See the first question on the App Engine Community FAQ: http://tr.im/fhvj --~--~-~--~~~---~--~~ You received this message because you are s

[google-appengine] Re: math/trig functions in GQL

2009-02-09 Thread Alexander Kojevnikov
On Feb 10, 8:50 am, Shawn wrote: > Is there a list of SQL-supported math (specifically trig) functions > published somewhere? GQL doesn't support any, you have to do the calculations in your Python code. --~--~-~--~~~---~--~~ You received this message because you

[google-appengine] Re: math/trig functions in GQL

2009-02-09 Thread Alexander Kojevnikov
On Feb 10, 11:50 am, Shawn wrote: > Ok, thanks for the info. Are there any good references on GQL other > than the docs provided on the Google Code site for App Engine? > The most complete reference you can find is there: http://code.google.com/appengine/docs/python/datastore/gqlreference.html -

[google-appengine] Re: Downloading app

2009-02-09 Thread Alexander Kojevnikov
On Feb 10, 1:47 pm, kev wrote: > Hello, > I accidentally deleted my app from my mac and cannot retrieve it. Is > there a way i can download the app from app engine? > See the first question on the App Engine Community FAQ: http://tr.im/fhvj --~--~-~--~~~---~--~~ Y

[google-appengine] Re: Downloading app

2009-02-09 Thread Alexander Kojevnikov
On Feb 10, 1:47 pm, kev wrote: > Hello, > I accidentally deleted my app from my mac and cannot retrieve it. Is > there a way i can download the app from app engine? > Also, star this issue: http://code.google.com/p/googleappengine/issues/detail?id=1047 --~--~-~--~~~--

[google-appengine] Re: Giftag authentication

2009-02-09 Thread Alexander Kojevnikov
On Feb 10, 3:35 pm, "Brett C." wrote: > On Feb 3, 10:15 am, Bret wrote: > > > How is Best Buy's Giftag using custom authentication? > > >http://www.giftag.com > > By rolling their own solution. Nothing says you have to use App > Engine's included support for Google (Apps) user authentication. Y

[google-appengine] Re: Allow dev_appserver to check for updates on startup? (Y/n)

2009-02-09 Thread Alexander Kojevnikov
On Feb 10, 12:03 pm, "c_greger...@mac.com" wrote: > I am running on a mac: > - GAE > - Eclipse > - PytDev > > Is it possible to not check for updates on startup? I get stuck in > Eclipse with: > INFO     2009-02-10 appengine_rpc.py] Server: appengine.google.com > Allow dev_appserver to check for

[google-appengine] Re: calculated properties

2009-02-10 Thread Alexander Kojevnikov
On Feb 10, 7:06 pm, David Symonds wrote: > On Tue, Feb 10, 2009 at 9:45 AM, Jason DeFontes wrote: > > > Is there a simple way to have a calculated property that automatically > > updates itself any time an entity is saved? For example: > > > class Article(db.Model): > >  body = db.StringProperty

[google-appengine] Re: Giftag authentication

2009-02-10 Thread Alexander Kojevnikov
On Feb 10, 10:57 pm, Waldemar Kornewald wrote: > Actually, the Giftag guys use app-engine-patch. ;) > As if there is a better alternative :) Thanks for your work Waldemar! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

[google-appengine] Re: gae 1.1.9 + appengine_django = ?

2009-02-10 Thread Alexander Kojevnikov
On Feb 11, 11:16 am, jamesv wrote: > Mine is blowing up as well, except on: > > : > Application configuration could not be read from "./app.yaml" http://groups.google.com/group/google-appengine/msg/9cb48e2e5d12aaae --~--~-~--~~~---~--~~ You received this message

[google-appengine] Re: files, directories & symlinks in root directory

2009-02-11 Thread Alexander Kojevnikov
On Feb 11, 3:08 pm, Jason Dusek wrote: > When I set up my Python program to just respond with a > directoy listing, it shows me this on my laptop: > > ['app.yaml', 'css', 'form.html', 'form.py', 'html', 'index.yaml', > 'js'] > > while when I deploy the app, I get: > > ['form.py', 'f

[google-appengine] Re: A Fan of Google Apps and now App Engine!

2009-02-11 Thread Alexander Kojevnikov
On Feb 12, 5:55 am, Damien wrote: > Hi Everyone, > > I have to say that I am surprised, I am a groupie like fan of Google > products and betas and somehow did not know anything about App Engine > until today! Oh...that could be because it is not yet available in the > the UK ;-( > > Do you know i

[google-appengine] Re: Account issue

2009-02-12 Thread Alexander Kojevnikov
On Feb 12, 1:20 pm, Eaden wrote: > Hi there, > Sorry for posting this on a public forum but I am unable to get help > elsewhere. > > My problem is simple. I am unable to log in my app engine control > center. It is not a valid google account. > > However, I am able to deploy my application using

[google-appengine] Re: Can't Creat New Application. Help~~~~~~~~

2009-02-13 Thread Alexander Kojevnikov
On Feb 14, 3:46 pm, Allen wrote: > As you mentioned, login through http://appengine.google.com/mydomain.com/ It should be http://appengine.google.com/a/mydomain.com/ (mind the '/a/' in the middle) --~--~-~--~~~---~--~~ You received this message because you are su

[google-appengine] Re: Operand error

2009-02-14 Thread Alexander Kojevnikov
On Feb 15, 3:57 am, Neversummer wrote: > I am new to app engine and pyton and unfortunately am not able to > accomplish a seemingly simple task - thanks for your patience. > The problem is in this line: > tdCurr = tdResult.count Query.count is a method. Unlike in Ruby, in Python you need to use

[google-appengine] Re: how to copy an entity

2009-02-14 Thread Alexander Kojevnikov
On Feb 15, 6:34 am, thebrianschott wrote: > I have tried this code, but the "next" copy with "joan2" does not get > put() into the datastore, only the original copy with "joan".  Can you > tell me how to do this without doing it attribute by attribute, > please? > This line: nextplace=place .

[google-appengine] Re: HELP~~~~ user problem.

2009-02-14 Thread Alexander Kojevnikov
On Feb 15, 7:31 am, Allen wrote: > Can I develope a new user login model (not use the Google user API), > just like a simple datastore to reserve the username and pw, and the > new visiter can register as a user. > http://groups.google.com/group/google-appengine/browse_thread/thread/838e3be58215f

[google-appengine] Re: how to copy an entity

2009-02-14 Thread Alexander Kojevnikov
On Feb 15, 12:40 pm, thebrianschott wrote: > The only link I can find regarding getattr > ishttp://code.google.com/appengine/articles/rpc.html > . I am unfamiliar with this approach. Would someone show me how to > loop through my example using getattr/setattr please? > I didn't test the code, le

[google-appengine] Re: HELP~~~~ user problem.

2009-02-15 Thread Alexander Kojevnikov
On Feb 15, 6:31 pm, Allen wrote: > you know ,I just following the "Getting Start" of Goog App. In my > application folder, there're just main.py, app.yaml, and some pics. > there's no so-called common folder. > how can I update step by step. If you download the sample project provided by app-eng

[google-appengine] Re: Newbie: AppEngine Launcher 1.1.9 broke Django

2009-02-15 Thread Alexander Kojevnikov
On Feb 16, 12:13 am, Giacecco wrote: > All, > Upgrading to AppEngine 1.1.9 on my Mac OS 10.5.6 has just broken a > simple Django app I have been working on for a while. See http://groups.google.com/group/google-appengine/browse_thread/thread/7b2445428b8115c2 --~--~-~--~~

[google-appengine] Re: Verification of account impossible from Paraguay?

2009-02-15 Thread Alexander Kojevnikov
On Feb 16, 5:06 am, Federico Cáceres wrote: > Hello, I would like to give the App Engine a try, but I'm stuck in the > Account Veritication page. Fill out the SMS issues form: http://appengine.google.com/waitlist/sms_issues --~--~-~--~~~---~--~~ You received this

[google-appengine] Re: Orange/Moldcell, Moldova

2009-02-15 Thread Alexander Kojevnikov
On Feb 16, 8:00 am, Barttos wrote: > Hello google developers, > i have an question, why google app engine doesn't suport Orange/ > Moldcell mobile operators from Moldova? :-/ Fill out the SMS issues form: http://appengine.google.com/waitlist/sms_issues --~--~-~--~~~-

[google-appengine] Re: self.request.get("userHtmlInput", None) problems

2009-02-16 Thread Alexander Kojevnikov
On Feb 16, 12:39 pm, thebrianschott wrote: > I am having no luck making with self.request.get() and None. I have > found the following references, but they do not pan out for me: empty > user inputs are not detected by the "if" clause.  Please help. Request.get() returns `default_value` only if

[google-appengine] Re: Entity Equality

2009-02-21 Thread Alexander Kojevnikov
On Feb 22, 12:51 pm, MajorProgamming wrote: > I currently have a need to take a result from a query (which is a > list) and remove one entity from it. For some reason though when I > perform the remove, I get an error which says that the entity does not > exist on the list. How can I do this corr

[google-appengine] Re: how to server app on my own domain?

2009-02-21 Thread Alexander Kojevnikov
On Feb 22, 5:08 pm, John wrote: > I've created my first app and I would like it to have its own domain > (iewww.mydomain.com).  I know this is possible since others are doing > it (iewww.giftag.com). How can I accomplish this? I've already tried > creating a cname but that didn't work, it just lo

[google-appengine] Re: how to server app on my own domain?

2009-02-22 Thread Alexander Kojevnikov
On Feb 23, 8:01 am, John wrote: > Is there a solution other than google apps? It appears google apps is > a paid service for businesses. > In short, no. Using Google Apps is the only officially supported method. And as Doug mentioned, the standard edition is free. --~--~-~--~~

[google-appengine] Re: Sudden change in used Stored Data Quota

2009-02-24 Thread Alexander Kojevnikov
> In order to launch billing, we changed our accounting methods to more > accurately count the real amount of data stored in the datastore.  This was > the cause of the increases some people saw in their quota. > Marzia, could you check my account (id:muspy). I have a really huge increase in the a

[google-appengine] Re: Help! My site only used 1% of quota,but it raise Exception said: Over Quota Why?

2009-03-03 Thread Alexander Kojevnikov
On Mar 3, 7:23 pm, proxypy wrote: >   Help! My site only used less than 1% of quota,but it raise exception > said: Over Quota  now!! > There are many different quotas, you must be hitting one of them. In your Dashboard go to "Quota Details", that page has a break-down of all the quotas. --~--~---

[google-appengine] Re: My Applications in Google App Engine status None Deployed

2009-03-03 Thread Alexander Kojevnikov
On Mar 3, 11:12 pm, wayne wrote: > hi am new bee to google apps.can any one provide help me  how to > deploy my application in google app..i have added my domain and > activated the service but it shows 404 error.my domain is > eximdata9.com my application is exim-da-bank plz help me any one > ar

[google-appengine] Re: My Carrier is not listed at the SMS validation step

2009-03-04 Thread Alexander Kojevnikov
On Mar 5, 9:35 am, "marcus.vinicius.lima" wrote: > Hi all! > > I'm unable to get started using GAE, cause I'm not even able to get > authenticated at the SMS step. > I tried so many times to send an SMS to my mobile operator, but the > message never is received, instead of the page display a succ

<    1   2   3   4