Re: launching python scripts through django template form

2007-11-15 Thread schlam
I am not sure I understand you question ... you want to launch a python script from a django url ? you can just import the script into urls.py and running from a url. On Nov 15, 12:03 pm, Greg_IAP <[EMAIL PROTECTED]> wrote: > Could anyone answer my question of yesterday? > > my problem is the act

custom forms, models and django 0.96

2007-11-09 Thread schlam
I am a developing in django 0.96 and therefor don't have the option to use form_for_model with fields, so having developed a custom form to add users to the database am experiencing minor problems with model validation. so my form is this : class UserForm(forms.Form): username = forms.Ch

custom forms, models and django 0.96

2007-11-09 Thread schlam
I am a developing in django 0.96 and therefor don't have the option to use form_for_model with fields, so having developed a custom form to add users to the database am experiencing minor problems with model validation. so my form is this : class UserForm(forms.Form): username = forms.Ch

Re: django used in another server application

2007-11-07 Thread schlam
Thanks, this seems to be just what Io wanted. On Nov 7, 12:00 pm, Brot <[EMAIL PROTECTED]> wrote: > Hello, > > I think this link could be useful for > youhttp://www.cotellese.net/2007/09/27/running-external-scripts-against-... > > Regards > Bernd > > On 7 Nov.

django used in another server application

2007-11-07 Thread schlam
I am am trying to write a server to communicate with a bit of hardware in python which will want to communicate with my django project database. Obviously I can use sqlobject to connect to the database but is there a way I can incorporate django into my server to connect to the database and use th

django used in another server application

2007-11-07 Thread schlam
I am am trying to write a server to communicate with a bit of hardware in python which will want to communicate with my django project database. Obviously I can use sqlobject to connect to the database but is there a way I can incorporate django into my server to connect to the database and use th

Re: iteration in MultiValueDict

2007-10-29 Thread schlam
nevermind, just being atwit --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMA

iteration in MultiValueDict

2007-10-29 Thread schlam
using 0.96 am trying to iterate through a MultiValueDict using for i,j in MultiValueDict.items(): print i, j is this a problem/feature/bug if so does someone know of a workaround? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

Newbie forms question:

2007-10-26 Thread schlam
so I am using the code from the Django documentation to processes information from a form with the code : def edit_place(request, place_id): try: manipulator = Place.ChangeManipulator(place_id) place = manipulator.original_object if request.method == 'POST': new_dat