First time here? Check out the FAQ!

Revision history  [back]

Askbot sticks to django methodology more closely. If you want some custom functionality - just add an app for that.

For example - if anyone wants custom authentication - they should just deploy a custom login app and deactivate the builtin login system.

Also, it is possible to add hooks - called signals in django to perform specific tasks at certain times. Their placement would depend on the use cases, would be nice to hear from the users, because such hooks would need to be well thought through and documented.

I am in favor of adding targeted customization points and use as much of the Django functionality as possible, rather than inventing a yet another plugin system.

Askbot sticks to django methodology more closely. If you want some custom functionality - just add an app for that.

For example - if anyone wants custom authentication - they should just deploy a custom login app and deactivate the builtin login system.

Also, it is possible to add hooks - called signals in django to perform specific tasks at certain times. Their placement would depend on the use cases, would be nice to hear from the users, because such hooks would need to be well thought through and documented.

I am in favor of adding targeted customization points and use as much of the Django functionality as possible, rather than inventing a yet another plugin system.