|
Posted
over 16 years
ago
by
[email protected]
(Pascal)
Hello, I am using Django forms to create objects which have a one-to-many relationship (e.g. Poll -> Choice, from the official Django tutorial). I am using FormSetField/FormWithSets and it works great. class Poll(db.Model): question = db.StringProperty() pub_date = db.DateTimeProperty(verbose_na me = 'date published',
|
|
Posted
over 16 years
ago
by
[email protected]
(kugutsumen)
I love App Engine Patch but one thing that made me uncomfortable is that the sample app admin interface doesn't use SSL. Note that you should also bookmark the https admin URL. diff -r 718cdb0d1253 app.yaml --- a/app.yaml Thu Jun 18 13:28:44 2009 +0200 +++ b/app.yaml Mon Jun 29 02:06:41 2009 +0700
|
|
Posted
over 16 years
ago
by
[email protected]
(bevenson)
Two of my models give me this error when I press Delete from the Edit screen in Admin: "coercing to Unicode: need string or buffer, NoneType found" Online search says it could be a bad record? Any help or direction to search would be appreciated.
|
|
Posted
over 16 years
ago
by
[email protected]
(Chokosabe)
I am trying to port a sjango app to appengine and it uses a library that relies on some _meta tags. "Every Django model class and every instance of every Django model class has an attribute on it named _meta, which is (as the name implies) where Django stores meta-information about the model for its
|
|
Posted
over 16 years
ago
by
[email protected]
(Olivier)
Hello, I just manage to integrate Google App Engine Backup & Restore (from @aral) to my App Engine Patch application ([link]). It works really great and I recommend it to everybody. However I came across some small issues that took me some time to solve and I would like to share it with you, it might help ;)
|
|
Posted
over 16 years
ago
by
[email protected]
([email protected])
Hello, Although, aep recommend to use custom user model to extend user info, but I tried django original get_profile() method, then encountered following issues. ================= It seems there're two approach to create user profile: 1) use signal to detect user creation, then add profile; 2) when get_profile()
|
|
Posted
over 16 years
ago
by
[email protected]
(irwin)
Did anyone try to debug the django code when running appenginepatch from within Eclipse/pydev ? Basically the breakpoints inside the django code get ignored. (the debugger is set up to debug the manage.py application). Any other code can get
|
|
Posted
over 16 years
ago
by
[email protected]
(Ben Lau)
Hi , I got the following error in using makemessages command to create message file: $ ./manage.py makemessages -l en Running on app-engine-patch 1.0.2.1 Error: This script should be run from the Django SVN tree or your project or app tree. If
|
|
Posted
over 16 years
ago
by
[email protected]
(Jennifer Carlton)
I installed [link], started dev_appserver.py, and added a flat page with the url "/about/" in the admin interface. Opening [link] gives "Page not found at / about/". Are any additional installation steps required to make the flatpages
|
|
Posted
over 16 years
ago
by
[email protected]
([email protected])
Hello, I'm new to app-engine-patch --- the development has been great. I developed a simple app, but when I went to deploy I ran into some issues. I ran: python manage.py updated It did it's usual thing, verbose of what it was doing.... eventually I was prompted for my "google app engine account" -- entered my creds,
|