RE: Django_xmlrpc

2007-06-11 Thread John Goodleaf
that exists sucks and that which doesn't suck doesn't exist, something that I'm working to fix at present. Can you give me some more details about your setup? Ideally, I'd need to see the XMLRPC_METHODS section of settings.py and the entry in your urlconf (urls.py) that po

Django_xmlrpc

2007-06-11 Thread John Goodleaf
Does anyone have django_xmlrpc running successfully? I have been trying to get the introspection-dev branch running but am running into some problems. I feel sure it's my fault. I'm not sure how to wire up django_xmlrpc with settings and urls.py. I can get the system to run and, apparently, regist

Get_FIELD_url issues

2007-05-31 Thread John Goodleaf
Awright. I just know I'm missing something stupid here. I have a model for file attachments that are uploaded. In one of my templates, I'd like to display a URL whence the attachment could be recalled. So I've put in {{ a.get_bugfile_url }} in the template, but the output HTML looks like Title.

RE: Django IDE

2007-04-05 Thread John Goodleaf
Wing IDE. I'll second that recommendation. I have both Komodo 4 and Wing at work. I use Wing pretty much exclusively. From a purely aesthetic standpoint, Komodo 4 is somewhat "cleaner" looking, but otherwise I think Wing is stronger. In addition to mentioned debugger, Wing does a very nice job wi

filter by related data

2006-08-15 Thread John Goodleaf
Title: Message Django newb. I haven't yet read everything (I admit it) but I'm hoping someone can help me out with a quick answer.   Assuming the following model:   class Patient(models.Model):    study_id = models.CharField(maxlength=10)    usubjid = models.CharField(maxlength=8, unique=T

RE: filter by related data

2006-08-15 Thread John Goodleaf
Thanks. I had just figured it out this very minute and was about to call a 'nevermind.' I had, I suppose out of habit, tried c=Comments.objects.filter(usubjid.study_id__exact='CP-AI-005') Missed the initial set of double underscores. D'oh. Thanks though. I appreciate your time. J -Original