First time here? Check out the FAQ!
1

Is Askbot going to be more modularized?
 

According to this question, http://meta.osqa.net/questions/8846/osqa-vs-askbot, one pro of osqa is the code is organized into core and modules.

Is Askbot going to adopt similar strategies?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
DealsVistaCom's avatar
137
DealsVistaCom
asked 13 years ago

Comments

askbot might also spin off some modules so that they could be reused elsewhere.
Evgeny's avatar Evgeny (13 years ago)
see more comments

1 Answer

0

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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 13 years ago, answered 13 years ago
link

Comments

see more comments