0
votes
1answer
15 views
App Engine Authentication Error
I have an app hosted by google app engine, and I am having trouble with authentication.
When I login using my admin account and try to access the admin page or members pages, I just get a blank …
0
votes
4answers
45 views
django app with app engine on windows
I'm trying to install app engine with django 1.1 on windows.
When launching the app engine I'm getting the following error: http://slexy.org/view/s21oLrbkHh
The steps I do are:
1.) Create new app …
0
votes
1answer
25 views
manage.py syncdb on windows for Google App Engine Patch does not work
I have installed Google App Engine patch and I get the following error when I want to sync the DB
Command on command prompt on windows
manage.py syncdb
The Google App Engine SDK could not be …
1
vote
1answer
44 views
App Engine model filtering with Django
hi i am using django app engine patch i have set up a simple model as follows
class Intake(db.Model):
intake=db.StringProperty(multiline=False, required=True)
#@permerlink
def …
0
votes
2answers
39 views
django template url function not matching in app
I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. I've also got a …
0
votes
2answers
27 views
django unprintable templatesyntaxerror object caused by urlconf?
I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don't think it really …
0
votes
3answers
37 views
GAE Image Posting to Datastore through Django Form
I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "Using the Images Python API" on …
1
vote
1answer
41 views
How do I unit test Django views on the Google App Engine?
I am struggling to run unit tests using the Django Client class on the Google App Engine. I downloaded GAEUnit (v2.0a for Django) and I am trying to use that as my testing framework (maybe I should …
1
vote
0answers
22 views
In Django (on Google App Engine), should I call main.py when running Unit Tests?
I have a Django application on the Google App Engine, and I would like to start writing unit tests. But I am not sure how to set-up my tests.
When I run my tests, I get the following error:
…
1
vote
1answer
56 views
How do I import the render_to_response method from Django 1.1 inside of Google App Engine?
I'm a Python newbie, so I'm sure this is easy. Here's the code in my main.py:
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from google.appengine.dist import use_library
…
0
votes
1answer
16 views
GAE Django template and swedish characters
Hi,
I'm trying to render templates of an html-page that contains swedish characters "åäö" but when it renders in the web browser it ends up with "�". The page renders in UTF-8.
Is there any way to …
2
votes
3answers
132 views
Using keys with spaces
Is there a way to do something like the following in Django templates?
{% for hop in hops%}
<tr>
<td>{{ hop.name }}</td>
<td>{{ hop.mass }}</td>
…
1
vote
2answers
63 views
Diference between appengine_django BaseModel and db.Model
I'm using the Google App Engine helper for Django. This helper includes the following lines in its template:
from appengine_django.models import BaseModel
from google.appengine.ext import db
# …
2
votes
3answers
79 views
Complex Queries using GAE datastore
Hi. I am in the early stages of developing a sports statistics website (ultimate frisbee) and would like to know your opinions if Google App Engine is right for me.
I am writing it in Python using …
0
votes
2answers
33 views
How do I do a if a in list_b test in Django 0.96 Templates?
How do I do a if a in list_b test in Django 0.96 Templates?
I'm having a list of checkboxes and a variable containing a list of corresponding values from a previous submit of the checkboxes.
Now I …
