Questions tagged [app-engine-patch]

30 questions
1
vote
1 answer

Problem with local dumpdata (on django app-engine-patch)

I'm using django with app-engine-patch and I'm having this wierd problem running manage.py dumpdata from local store (works fine when I use the --remote option) I'm running a local development server that has some test data on it. I can see that…
Eran Kampf
  • 8,928
  • 8
  • 49
  • 47
0
votes
1 answer

Problem setting up unit testing when using app engine patch on google app engine

I'm having a lot of trouble writing unit tests for my app engine patch solution. I've asked this question on experts exchange (http://www.experts-exchange.com/Programming/Languages/Scripting/Python/Q_26509115.html) but it's been there for two weeks…
Craig
  • 18
  • 5
0
votes
1 answer

app-engine-patch and "object_detail" view didn't work

Hi(Sorry for my ugly english) I want to use the app-engine-patch and google app engine to create a simple blog, and use the django generic views handle the blog entry page. But when I use Django's generic views…
Hugh
  • 1
  • 1
0
votes
1 answer

why i can't run app-engine-patch on my gae

this is app-engine-patch http://code.google.com/p/app-engine-patch/ i download it ,and unzip , but can't running on my google-app-engine launcher why ? updated but the patch has app.yaml, and i can't find aep-sample updated2 when i python manage.py…
zjm1126
  • 63,397
  • 81
  • 173
  • 221
0
votes
1 answer

appcfg.py upload_data entity kind problem

I am developing application on app-engine-path and I would like to upload some data to datastore. For example I have a model models/places.py: class Place(db.Model): name = db.StringProperty() longitude = db.FloatProperty() latitude =…
0
votes
1 answer

Multi choice form field in Django

I'am developing application on app-engine-path. I would like to make form with multichoice (acceptably languages for user). Code look like this: Language settings: settings.LANGUAGES = ((u"cs", u"Čeština"), (u"en", u"English")) Form model: …
Dingo
  • 2,656
  • 1
  • 19
  • 16
0
votes
1 answer

Google App Engine with Django Patch and the Deferred library

Anyone successfully using deferred.defer library with app-engine-patch? If so please share.
yoav.aviram
  • 1,802
  • 15
  • 19
0
votes
2 answers

Why would a Django admin site limited to 301 entries?

I'm working on a Google App Engine project using Django. I noticed that for some reason, the Django administration system page lists only 301 entities for one model, and 301 entities for another model. But there are actually over 500 stored…
ine
  • 14,014
  • 8
  • 55
  • 80
0
votes
1 answer

Optimizing ModelChoiceField query in django Admin (AppEngine)

I have two models: Activity and Place. The Activity model has a ReferenceProperty to the Place model. This was working fine until the Place table started growing and now when trying to edit an Activity via django admin I get a memory error from…
Eran Kampf
  • 8,928
  • 8
  • 49
  • 47
0
votes
1 answer

How do I get PyFacebook working with the Google App Engine Patch?

I've tried to follow the advice of this question: Facebook, Django, and Google App Engine, however I've run into a number of problems. The first is that from facebook.djangofb import facebook doesn't work because when I try to use the decorator…
Bialecki
  • 30,061
  • 36
  • 87
  • 109
0
votes
0 answers

Error accessing dashboard or admin interface in Google App Engine

I am unable to access dashboard/admin interface of Google app engine on local development environment which could be access using localhost:8000/_ah/admin/. It throws following error: Traceback (most recent call last): File "C:\Program…
0
votes
1 answer

Do fixtures with relationships work in app-engine-patch?

I have a fixture with multiple models that I'm using for testing. It works for the basic models, but fails to create the entities for the models with relationships. Is this a known limitation of app-engine-patch or am I missing something? I'm…
byamabe
  • 1,421
  • 1
  • 12
  • 19
0
votes
1 answer

AppEngine/Django: editing db.Key in the Admin app

Or, to be precise, how do I properly present a form to edit a db.ListProperty of db.Keys on a model admin page, with app-engine-patch for Django? I have a Category like this: class Category(db.Model): title =…
Jerry Chong
  • 563
  • 2
  • 9
  • 19
0
votes
1 answer

basic unique ModelForm field for Google App Engine

I do not care about concurrency issues. It is relatively easy to build unique form field: from django import forms class UniqueUserEmailField(forms.CharField): def clean(self, value): self.check_uniqueness(super(UniqueUserEmailField,…
Alexander Vasiljev
  • 1,974
  • 3
  • 19
  • 27
0
votes
1 answer

app-engine-patch with pyamf = No module named encoding

I'm trying to use app-engine-patch with pyamf by following this: http://pyamf.org/wiki/GoogleAppEngine because I want to migrate my Django <-> pyamf application to app-engine-patch <-> pyamf. What I have now is that I created my gateway.py with only…
Perica Zivkovic
  • 2,610
  • 24
  • 32
1
2