|
Posted
over 16 years
ago
by
[email protected]
(vuc)
I am a little confused about how the app-engine-patch Django admin is supposed to work. I want to test the admin interface but how do I create an admin? What I mean is if I was normally using Django, I would go into the SQL database and run a "CREATE USER 'admin'@'localhost' IDENTIFIED BY 'test';" to get my admin whose password is test.
|
|
Posted
over 16 years
ago
by
[email protected]
(dartdog)
Having just run into this, the templates in Pinax use different block names than AEP, where can I find these in AEP? Since I now need to find any others... Would have thought the Model took care of all that consistently...
|
|
Posted
almost 17 years
ago
by
[email protected]
(Olivier)
Hello, I am new here. I just look at some code samples and i'm trying to figur out how to use cache with app engine patch. Should I use google memcache or can I use django cache on app engine ( using {% load cache %} in template for example ) ? Just another question : can I use django's comments framework ?
|
|
Posted
almost 17 years
ago
by
[email protected]
(kevin)
Hello all, I need a simple blog app that i can run on the app engine using app engine patch. Can someone point me to one? Or, is it tricky to modify an existing django app to work on AEP?
|
|
Posted
almost 17 years
ago
by
[email protected]
([email protected])
Hello, It seems GLOBALTAGS feature is removed from latest app-engine-patch- sample. But my apps just rely on i18n and googletags, my current solution is: - add {% load i18n %} or {% load googletags %} to every one of templates needed. - add 'ragendja' to INSTALLED_APPS in setting.py But I don't know above are correct or not.
|
|
Posted
almost 17 years
ago
by
[email protected]
(james)
Hi everyone, thanks for your hard work on app engine patch. here's my little effort. 2d in my long life. a django authopenid works w/ appenginepatch and django-registration (patched) [link]
|
|
Posted
almost 17 years
ago
by
[email protected]
(toxicafunk)
Hi, First of all thanks for appengine-patch, great work!!! I would like to generate RSS feeds from my contents but it seems appengine-patch does not support django.contrib.syndication.vie ws.feed, or at least I haven't found it. So, is there a common/standard way to produce RSS with AEP or GAE?
|
|
Posted
almost 17 years
ago
by
[email protected]
(ezu)
Hi there, I use app-engine-patch in one of my project right now and i've to say that i love it. But there is one thing I can't do in a proper manner, it seams: uprading the patch within my project in the right way. I have deeply modified the
|
|
Posted
almost 17 years
ago
by
[email protected]
(AE)
Hi, are there any convention for images? I get the myapp media generator and the settings.py for JS and CSS based on the doc are there any rule for images? or just drop it in /media ?? Cheers anton
|
|
Posted
almost 17 years
ago
by
[email protected]
(rynop)
I have a class 'Team' in package schedules module models.py. I've noticed that app-engine-patch prepends the package name before the class name when making the datastore entity type. So when i add a Team through the django admin, it adds it to entity type 'schedules_team'. When I use the app engine bulkloader, it loads the data into entity
|