Re: Django IDE

2010-02-15 Thread Andrew Davison
Komodo is a very nice IDE for dynamic languages in general, so can be used for both Python and Javascript, for example. It also has syntax highlighting, autocomplete, etc. for the Django template language. The full version costs a couple of hundred euros, but there is a very useable free version, K

Re: Problem with django tagging: how to add tags??

2008-12-09 Thread Andrew Davison
> I am using django tagging and have problems adding tags to an object. > > There are 2 methods that enable adding a tag: > - add_tag() > - update_tags() > > -- > for tag in parse_inputs(form.cleaned_data['tags']): > Tag.objects.add_tag(tag) >