Re: learning django and python

2007-11-15 Thread Tim Perrett
This should help with installing on OSX http://blog.timperrett.com/2007/9/22/running-django-on-osx Cheers Tim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: can contrib.sites.models (Site) belong to an application model?

2007-10-23 Thread Tim Perrett
For sure, ive been playing with it and have seen that I can have one- to-many (Site has-many Partners) and ManyToMany, but I was looking to have it so that one partner has many sites? Is the ManyToMany the only way to do this? As in terms of a DB schema, its not a many to many relationship.

can contrib.sites.models (Site) belong to an application model?

2007-10-22 Thread Tim Perrett
Hey all Just a quick one that I dont seem to be able to find anywhere in the documentation; Is it possible for one of my app models to have-many sites? I have a model called Partner which i would like to have-many Sites, is this possible? Or is this too ingrained in the django code itself?

Re: Consuming a SOAP services from Django

2007-10-18 Thread Tim Perrett
Hey Antoni Agreed, separating the generated code (which was created by reading a WSDL file), and then calling that is the way to go. In my situation, I have a couple of difference service endpoints to call, so im not sure how best to package them up. What are peoples thoughts? I'll have the

Consuming a SOAP services from Django

2007-10-17 Thread Tim Perrett
Hey all I have played around with consuming a SOAP services with simple python scripts and the ZSI soap implementation, but I was then wondering where best to put this kind of code? It would start to clutter things up if I was to put it in views.py wouldnt it? Any advice would be great

Re: Workflow engine

2007-10-17 Thread Tim Perrett
When you say 'workflow', do you mean like a JBPM type thing, but in python? Cheers TP On 17 Oct 2007, at 14:07, Lic. José M. Rodriguez Bacallao wrote: > hi folks, I need a workflow engine to use with a django web site > I'm implementing, does anyone know a good workflow engine for >