Success at using "reusable apps"?

2009-08-16 Thread Margie Roginski
I have a general question about how people manage "reusable apps" in the web app world. Let me give an example of what I am encountering, maybe those of you with experience can comment. I'm developing an app that is a task management app. IE, an engineering manger creates tasks, spawns them off

Re: Success at using "reusable apps"?

2009-08-16 Thread Andy McKay
On 16-Aug-09, at 8:50 PM, Margie Roginski wrote: > * modify the threadedcomments views.py code to take a callback > function as an argument - that callback function could do my Task > specific stuff as described above, but this would keep it more > encapsulated within my Task app (but of course I

Re: Success at using "reusable apps"?

2009-08-16 Thread Joshua Partogi
On Mon, Aug 17, 2009 at 3:41 PM, Andy McKay wrote: > > > On 16-Aug-09, at 8:50 PM, Margie Roginski wrote: > > * modify the threadedcomments views.py code to take a callback > > function as an argument - that callback function could do my Task > > specific stuff as described above, but this would

Re: Success at using "reusable apps"?

2009-08-17 Thread Margie
That's a good idea. So you are suggesting, for example, that when the threadedcomment gets saved, that my app catch the post save signal and take its action then? I like that idea, I'm going to play around with that today. I hadn't thought about using signals before, but I guess that is the ob