I found a better way to hack :)

In the django.contrib.comments.__init__ file, I changed the get_model,
get_form and get_form_target method to something like:

def get_form():
    if get_comment_app_name() != __name__ and hasattr(get_comment_app
(), "get_form"):
        return get_comment_app().get_form()
    else:
        from django.contrib.comments.forms import CommentForm
        return CommentForm

This is used to define the get_xxx_url functions, I use the same idea.

I still looking for a solution without the hack. If there is no way, I
can propose my solution on the delepers list ;)

By the way, I using django1.0.2...

Thanks

--
Michel Sabchuk
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to