Re: Announcing django_xmlrpc

2007-05-14 Thread Graham Binns
No worries, any time. I'm forever making that mistake (unless PyDev catches it for me of course, which is... well, why I use PyDev :)) Cheers, enjoy, Graham On May 14, 4:50 pm, "patrick k." <[EMAIL PROTECTED]> wrote: > that´s it. sorry. > > thanks for the help. > patrick > > Am 14.05.2007 um 17

Re: Announcing django_xmlrpc

2007-05-14 Thread patrick k.
that´s it. sorry. thanks for the help. patrick Am 14.05.2007 um 17:47 schrieb Graham Binns: > > There's a typo in that list, assuming it's a straight copy and paste: > > 'django.django_xmlrpc,' > > Should read: > > 'django.django_xmlrpc', # The comma was placed /before/ the > closing

Re: Announcing django_xmlrpc

2007-05-14 Thread Graham Binns
There's a typo in that list, assuming it's a straight copy and paste: 'django.django_xmlrpc,' Should read: 'django.django_xmlrpc', # The comma was placed /before/ the closing quote instead of after it. If that doesn't fix it, let me know. Cheers, Graham On May 14, 4:39 pm, "patric

Re: Announcing django_xmlrpc

2007-05-14 Thread patrick k.
INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', 'django.django_xmlrpc,' 'django.contrib.flatpages', 'www.movies', 'www.trailer', 'www.stars', '

Re: Announcing django_xmlrpc

2007-05-14 Thread Graham Binns
That's... bizarre. Could you post the INSTALLED_APPS section of your settings.py here for me? Cheers, Graham On May 14, 2:54 pm, "patrick k." <[EMAIL PROTECTED]> wrote: > 1. no error when importing from the shell, if django.django_xmlrpc is > NOT in the installed apps. > 2. not able to launch

Re: Announcing django_xmlrpc

2007-05-14 Thread patrick k.
1. no error when importing from the shell, if django.django_xmlrpc is NOT in the installed apps. 2. not able to launch the shell when django.django_xmlrpc IS in the installed apps. I´ve tried to put the package somewhere else but that doesn´t change anything. thanks, patrick Am 14.05.200

Re: Announcing django_xmlrpc

2007-05-14 Thread CodeDragon
Hi Patrick, I can't seem to reproduce this error myself. Could you try importing django.django_xmlrpc through the interactive shell and reproduce the output for me? Also, it might be worth trying to put the django_xmlrpc package somewhere else in your PYTHONPATH rather than under the Django dire

Re: Announcing django_xmlrpc

2007-05-14 Thread patrick k.
thanks for the code, graham. I tried to install django_xmlrpc as described on the google-site. I did the checkout to my django-directory and added django.django_xmlrpc to the installed apps. when I start the dev-server I get the following error-message: AttributeError: 'module' object has no at

Announcing django_xmlrpc

2007-05-13 Thread CodeDragon
Hi all, Here's a note to let you know that there is now an XML-RPC server app for Django publicly available under an open-source license. django_xmlrpc allows you to expose any function through XML-RPC. I'm currently working on adding introspection and useful things like system.multicall functio