Re: using django for google appengine, noob to both.

2010-07-01 Thread Sector7B
Felippe, Thank you for our feedback, I've posted this question over to the group you mentioned a couple replies ago, still waiting approval from the moderators but if you feel like continuing this I'd appreciate it. It might be helpful to others in the future. Malcom, I briefly looked over the si

Re: using django for google appengine, noob to both.

2010-06-30 Thread Malcolm MacKinnon
You should look at this site: http://www.allbuttonspressed.com/projects/django-nonrel I recommend it over any other django appengine ORM I've tried. I think it can help you with some of your issues. The blog and discussion group is very act

Re: using django for google appengine, noob to both.

2010-06-30 Thread Felippe Bueno
You can... but there are some limitations. For example, django's admin site, don't work using appengine You need to use db.Model, You need to use google.appengine.ext.db.djangoforms to validate forms... And some more Btw, I think its better we discuss this using private messages, or at app-

Re: using django for google appengine, noob to both.

2010-06-30 Thread Sector7B
interestingly though, i guess my problem is still that i'm not able to do the django way of things, which I thought was idea behind doing it like this: http://code.google.com/appengine/articles/appengine_helper_for_django.html On Jun 30, 7:30 pm, Sector7B wrote: > i was just coming to write that,

Re: using django for google appengine, noob to both.

2010-06-30 Thread Sector7B
i was just coming to write that, lol. I opened up the code and read it! What a novel approach. Thanks for pointer, i'm going to try again. On Jun 30, 7:17 pm, Felippe Bueno wrote: > BaseModel extends db.Model :) > > http://stackoverflow.com/questions/1720157/diference-between-appengin... > > >

Re: using django for google appengine, noob to both.

2010-06-30 Thread Felippe Bueno
BaseModel extends db.Model :) http://stackoverflow.com/questions/1720157/diference-between-appengine-django-basemodel-and-db-model On Wed, Jun 30, 2010 at 8:09 PM, Sector7B wrote: > Thank you for your reply. I gave it a try, and it didn't seem to > work. The helper project (according to the

Re: using django for google appengine, noob to both.

2010-06-30 Thread Sector7B
Thank you for your reply. I gave it a try, and it didn't seem to work. The helper project (according to the introductory article) has me using their "BaseModel", which I think is supposed to revert me back to using Django code. However there seems to be very little written beyond that article, a

Re: using django for google appengine, noob to both.

2010-06-30 Thread Felippe Bueno
I think (THINK) you problem is with the db.Model Take a look at http://code.google.com/appengine/docs/python/datastore/queryclass.html#Query_filter You will see that db.Model don't have the filter method, db.Quer

using django for google appengine, noob to both.

2010-06-30 Thread Sector7B
Hi, I'm using django on google appengine using this: http://code.google.com/appengine/articles/appengine_helper_for_django.html So I have my models, and I can load my pages and templates, and started to do some rudimentary object creates and gets inside the shell (python manage.py shell) and my vi