Hi,

> Is there a reasonable/accptable ot better yet "recommended" way to add 
> functionality, etc. to an app without resorting to the above points? If so, 
> what stones should I turn (via google serches, etc.) to figure this out.

It depends quite a bit on how "extensibly" the said app was designed.
Does it use Python classes, for instance? If so, you could look into
extending these classes with your own. Does it issue or allow Django
signals? If so, you could add your own listeners to such signals.

You can also do many other kludgy things with Python like replacing a
class method's implementation but that's not very good practice as it
eventually ends up with unmaintanable code.

Can you tell us more about the app your are looking to extend and also
in what ways you want to extend it?

-Rajesh D

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to