12
I Use This!
Activity Not Available

News

Posted almost 17 years ago by [email protected] (Waldemar Kornewald)
Hey guys, if you're working on a non-trivial project based on app-engine-patch (i.e., bigger than "hello world" or the sample project ;) *and* if you'd like to be added to the list of projects using app-engine-patch could you please reply here? In exchange, it would be really cool if you could also add a link
Posted almost 17 years ago by [email protected] (rynop)
Do you have to do something special to upload data into the development app engine server running a django app-engine-patch app? I run the following command and it says it inserted 32 records (which is what I expect), but when i go into the django admin and look at my model there is no data....
Posted almost 17 years ago by [email protected] (Stephen Mayer)
I added a flat page to my django admin but i'm getting a 404 page not matched response: ========== Page not found (404) Request Method: GET Request URL: [link] Using the URLconf defined in urls, Django tried these URL patterns, in this order: 1. ^guestbook/login$
Posted almost 17 years ago by [email protected] (agomes)
Hi all, I'm trying to integrate an appengine app (using app-engine-patch) into a google apps domain. When I try to add a user in the admin app I get this log error: "BadValueError: Property user is required" Can someone help me make app-engine-patch google auth work inside a google apps domain?
Posted almost 17 years ago by [email protected] (Wiiboy)
Even if I specify multiline=True in my model, the Django Admin does not give me a multiline textarea. Why not, and how do I tell it to?
Posted almost 17 years ago by [email protected] (rynop)
Does the patch support Django's test framework? If so, does it support both Doctests and unit tests?? 2 other Side questions: is there an IRC channel for app-engine-patch? does app-engine-patch support the use of google app engines memcached service?
Posted almost 17 years ago by [email protected] (Alexander Vasiljev)
Hello. I tried to upload data to production server with appconfig.py upload_data ... and did not succeed yet. Details are here: [link] This is really AE issue, but due to the fact that I exporting data to aep model, I am to include into my custom loader lines:
Posted almost 17 years ago by [email protected] ([email protected])
Hello, here is the issue encountered on Vista Ultimate with Japanese system lang env. With site_data.js for MediaGenerator, "site_data.settings.MEDIA_URL" javascript returns "/generated_media/media/1" on production server. It cause fail to get media in javascript. Generated javascript in "_generated_media\1\combined-e n.js" as below.
Posted almost 17 years ago by [email protected] (joop23)
Hello, Using the MediaGenerator, it combines all my javascript files into one file. What if I only wanted to reference one javascript file instead of the one created by MediaGenerator? What I can do to have finer control of which javascript files I would like to use in a template file?
Posted almost 17 years ago by [email protected] (Nathan Ekstrom)
I'm trying to use FormWithSets as the form to use in the Admin interface. My code is: class ContactAdminForm(forms.ModelFo rm): phones = rforms.FormSetField(Contacthon eNumber) addresses = rforms.FormSetField(ContactAdd ress) emails = rforms.FormSetField(ContactEma il) class Meta: model = Contact