@copyright: 2008 Matthijs Kooijman
@license: GNU GPL, see COPYING for details.
+
+ This plugin allows authentication (use accounts and password) and
+ authorization (use groups) against a phpbb Mysql database.
+
+ To use this plugin, you should put it in a place where the config python
+ file can "see" it (somewhere in your pythonpath, or in the same dir as the
+ config file). Then import the setup function and call it.
+
+ For example:
+
+ class FarmConfig:
+ import phpbb
+ (phpbb_auth, phpbb_groups) = phpbb.setup(...)
+ auth = [phpbb_auth]
+ groups = phpbb_groups
"""
import MySQLdb