[google-appengine] Re: function call

2009-04-04 Thread Ronn Ross
; > class MyHandler(webapp.RequestHandler): > @login_required > def get(self): > ... > > On Fri, Apr 3, 2009 at 8:02 PM, Ronn Ross wrote: > >> How can I create a function that is run every time a page is loaded >> without adding an auth block in every method? Thi

[google-appengine] test data for my model

2009-04-04 Thread Ronn Ross
I have a simple model like so: class User(db.Model): UserName = db.StringProperty(required=True) Password = db.StringProperty(required=True) FirstName = db.StringProperty(required=True) LastName = db.StringProperty(required=True) I would like there to be at least one default user in this table whi

[google-appengine] function call

2009-04-03 Thread Ronn Ross
How can I create a function that is run every time a page is loaded without adding an auth block in every method? This is so I can authenticate people. How would I do something like that in GAE? --~--~-~--~~~---~--~~ You received this message because you are subscri

[google-appengine] Use my Google Apps account for app engine

2009-03-23 Thread Ronn Ross
Hello, I subscribed to google apps premium addition. I attempt to sign in to google apps to upload my app and it won't let me gain access. Are you allowed to use your google apps account to create apps in app engine. Thanks --~--~-~--~~~---~--~~ You received this m

[google-appengine] Re: Django template

2009-03-20 Thread Ronn Ross
to > http://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs for > more details > > On Fri, Mar 20, 2009 at 1:12 PM, Ronn Ross wrote: > >> I'm trying to use a conditional statement in django template. Like so:{% >> if AccountData.AccountType == "

[google-appengine] Django template

2009-03-20 Thread Ronn Ross
I'm trying to use a conditional statement in django template. Like so:{% if AccountData.AccountType == "Current" %} Account is current {% endif %} GAE is throwing this error: TemplateSyntaxError: 'if' statement improperly formatted {% if (AccountData.AccountType == "Current") %} Can s

[google-appengine] Re: receiving email

2009-03-20 Thread Ronn Ross
code.google.com/intl/pt-BR/appengine/docs/roadmap.html >> >> On 20 mar, 11:12, Ronn Ross wrote: >> > I would like people to email may app and it show up in the app. So that >> way >> > it can work like a help desk system. If there anyway to do that through >&g

[google-appengine] receiving email

2009-03-20 Thread Ronn Ross
I would like people to email may app and it show up in the app. So that way it can work like a help desk system. If there anyway to do that through app engine? Can you pull data from a gmail account? --~--~-~--~~~---~--~~ You received this message because you are su

[google-appengine] Charging for you app.

2009-03-19 Thread Ronn Ross
If I create an app in gae. Can I charge people for use. I didn't fully read term of use. --~--~-~--~~~---~--~~ 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

[google-appengine] Re: Data model in folder

2009-03-18 Thread Ronn Ross
using this line to include it: from DataModels.AccountData import Accounts Thanks. On Wed, Mar 18, 2009 at 12:37 PM, Ronn Ross wrote: > I added a blank __init__.py file in my DataModels folder and I receive > this: > **: __init__() got an unexpected keyword > argument 'Required

[google-appengine] Re: Data model in folder

2009-03-18 Thread Ronn Ross
tells python that > this folder as a package. > > regards iham > > On Mar 18, 2009, at 2:22 PM, Ronn Ross wrote: > > I have placed my data model in a separate folder. For example: > DataModels/AccountData.py > > Now I want to import it into my main controller. I'm

[google-appengine] Data model in folder

2009-03-18 Thread Ronn Ross
I have placed my data model in a separate folder. For example: DataModels/AccountData.py Now I want to import it into my main controller. I'm trying: from DataModels.AccountData import Accounts it give me this error when I try to run it: **: No module named AccountData args = ('No module na

[google-appengine] IDE

2009-03-18 Thread Ronn Ross
Will google release an IDE for app engine? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this gro

[google-appengine] Re: Writing to the file system?

2009-03-17 Thread Ronn Ross
erty should do fine you can > use the blob for things like word docs and non text / binary formats > too. > > Sudhir > blog.sudhirj.com > > On Mar 16, 6:15 pm, Ronn Ross wrote: > > Does anyone know a work around for this type of task? > > > > > > >

[google-appengine] Re: "Let Delete My Apps" (3 apps)

2009-03-17 Thread Ronn Ross
I second that motion. On Mon, Mar 16, 2009 at 11:16 PM, Adam wrote: > > If you must subject us to this every day, for the love of god please > change it to 'let ME delete my apps'. > > Or better yet, just stop. > > A > > On Mar 16, 4:31 pm, xml2jsonp wrote: > > Thanks to: > > - ikoo-dirtylife >

[google-appengine] Genshi on GAE

2009-03-16 Thread Ronn Ross
Has anyone use Genshi on GAE? --~--~-~--~~~---~--~~ 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 emai

[google-appengine] Realease versions

2009-03-16 Thread Ronn Ross
Can you on use integers for version numbers? For example 1,2, and 3, or can you uses floats e.g. 1.1,1.2,1.3?thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, sen

[google-appengine] Re: Writing to the file system?

2009-03-16 Thread Ronn Ross
Does anyone know a work around for this type of task? On Mon, Mar 16, 2009 at 9:10 AM, Sudhir wrote: > > No, I don't believe you can... part of the security restrictions. > > Ronn Ross wrote: > > Can you write to the file system with app engine? My app requires peop

[google-appengine] Writing to the file system?

2009-03-16 Thread Ronn Ross
Can you write to the file system with app engine? My app requires people to upload text documents. 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] Re: Error sending email

2009-03-16 Thread Ronn Ross
the address of the current signed-in user: > http://code.google.com/appengine/docs/python/mail/emailmessagefields.html > > > On Mar 15, 6:28 pm, Ronn Ross wrote: > > I'm trying to send an email using the following code: > > message = mail

[google-appengine] What applications to developed on appengine?

2009-03-16 Thread Ronn Ross
I'm part of a small start up and we create an application similar to 37 signals Basecamp. It is a basic CRM app, but we have a lot of users. They read and write a lot of data to the system per day. Would this be an ideal candidate for an app engine project? Thanks --~--~-~--~~-

[google-appengine] Error sending email

2009-03-15 Thread Ronn Ross
I'm trying to send an email using the following code: message = mail.EmailMessage(sender="supp...@myappname.com", subject="this is the subject") message.to = "John Doe " message.body = "this is the body" message.

[google-appengine] sending email from your development server

2009-03-15 Thread Ronn Ross
Can you send email from your dev server? I'm trying to view the formatting of my email before I upload, but no mail has come through yet. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To p

[google-appengine] Re: large imports/exports

2009-03-14 Thread Ronn Ross
our data or did the upload at once ?? > > > > On Fri, Mar 13, 2009 at 10:47 PM, Let Delete My Apps > > > > wrote: > > > > > I've imported 87811 records using "bulkload_client.py" > > > . > > > . > > > . > > > O

[google-appengine] Re: sdk

2009-03-13 Thread Ronn Ross
vserver.html > > -- > http://pyoohtml.appspot.com/let-delete-my-apps/home > > On Mar 13, 9:44 pm, Ronn Ross wrote: > > Does the appengine sdk have something included where you can look at the > > datastore? For example I'm having trouble displaying data,

[google-appengine] sdk

2009-03-13 Thread Ronn Ross
Does the appengine sdk have something included where you can look at the datastore? For example I'm having trouble displaying data, and I want to see if I writing data to the datastore. --~--~-~--~~~---~--~~ You received this message because you are subscribed to th

[google-appengine] large imports/exports

2009-03-13 Thread Ronn Ross
Do you know if there's an easy way to do large imports/exports of data as needed for Google Appengine? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to go

[google-appengine] Re: Model

2009-03-10 Thread Ronn Ross
Great that worked thx On Sun, Mar 8, 2009 at 7:10 PM, GregF wrote: > > Yes you can, and as you suggest, it is a very good idea. Just create > one file called my_models.py with the model definitions (say Cat and > Dog), and in your other files just use "from my_models import Cat". > > > > > --~-